Translation / app.py
Nikhitha2310's picture
Create app.py
ff6fdec verified
raw
history blame
229 Bytes
from tansformers import pipeline
import streamlit as st
inp=st.text_input("Enter the text")
btn=st.button("Submit")
pipe=pipeline(task='translation',model='Helsinki-NLP/opus-mt-en-roa')
if(inp and btn):
st.write(pipe(inp))