Spaces:
Runtime error
Runtime error
File size: 504 Bytes
2a61345 a3df29c 88c7591 2a61345 a6a718f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
import streamlit as st
from transformers import pipeline
classifier = pipeline("question-answering", model="deepset/roberta-base-squad2")
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__ == "__dict__":
dict() |