Spaces:
Runtime error
Runtime error
File size: 587 Bytes
a4f47f9 8b332ad 7238163 51c5ffc a4f47f9 7238163 a4f47f9 fb65e18 a4f47f9 51c5ffc a4f47f9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import streamlit as st
from transformers import pipeline
translator = pipeline("translation",model="Helsinki-NLP/opus-mt-mul-en", max_length=40)
#classifier = pipeline("translation", model="Helsinki-NLP/opus-mt-mul-en")
def main():
st.title("Thai language Translation")
with st.form("text_field"):
text = st.text_area('enter some text :')
# clicked==True only when the button is clicked
clicked = st.form_submit_button("Submit")
if clicked:
results = translator([text])
st.json(results)
if __name__ == "__main__":
main() |