Test_Lab10 / app.py
PRNKPS's picture
Create new file
a3df29c
raw
history blame
519 Bytes
import streamlit as st
from transformers import pipeline
classifier = pipeline("text2text-generation", model="t5-base-finetuned-question-generation-ap")
def main():
st.title("English to German")
with st.form("text_field"):
text = st.text_area('enter some english word:')
# 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()