Lab10_630510654 / app.py
Aomsin's picture
Update app.py
8b332ad
raw
history blame contribute delete
587 Bytes
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()