PRNKPS commited on
Commit
2a61345
1 Parent(s): f832740

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -4
app.py CHANGED
@@ -1,5 +1,17 @@
1
- from transformers import AutoTokenizer, T5ForConditionalGeneration
 
2
 
3
- model_name = "google/tapas-base-finetuned-wtq" # you can specify the model size here
4
- tokenizer = AutoTokenizer.from_pretrained(model_name)
5
- model = T5ForConditionalGeneration.from_pretrained(model_name)
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from transformers import pipeline
3
 
4
+ classifier = pipeline("text2text-generation", model="google/tapas-base-finetuned-wtq")
5
+ def main():
6
+ st.title("English to German")
7
+
8
+ with st.form("text_field"):
9
+ text = st.text_area('enter some english word:')
10
+ # clicked==True only when the button is clicked
11
+ clicked = st.form_submit_button("Submit")
12
+ if clicked:
13
+ results = classifier([text])
14
+ st.json(results)
15
+
16
+ if __name__ == "__main__":
17
+ main()