File size: 251 Bytes
dd421a7
 
7f855a0
 
 
 
 
dd421a7
7f855a0
 
1
2
3
4
5
6
7
8
9
10
11
import streamlit as st
from transformers import pipeline


pipe = pipeline('translation', model='Helsinki-NLP/opus-mt-en-hi')

text = st.text_area("Enter some English text")
if text:
    out = pipe(text, src_lang='en', tgt_lang='hi')
    st.json(out)