Spaces:
Runtime error
Runtime error
File size: 580 Bytes
b711432 ae13f64 196c705 b711432 196c705 b711432 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
import streamlit as st
from transformers import pipeline
#model = AutoModelForSeq2SeqLM.from_pretrained("t5-base")
#tokenizer = AutoTokenizer.from_pretrained("t5-base")
classifier = pipeline("translation", model="t5-base")
def main():
st.title("Text 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 = classifier([text])
st.json(results)
if __name__ == "__main__":
main() |