merve HF staff commited on
Commit
0790dc0
Β·
1 Parent(s): a4b1214

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -11,7 +11,7 @@ st.write("If you have very little amount of data, you could actually augment it
11
  st.write("Try it yourself here πŸ‘‡πŸ»")
12
 
13
 
14
- generator = pipeline("text2text-generation", model = "mrm8488/t5-small-finetuned-quora-for-paraphrasing")
15
 
16
  default_value = "How can I put out grease fire?"
17
  sent = st.text_area("Input", default_value, height = 10)
@@ -27,7 +27,7 @@ st.write("Your English intent classification model will be between these two mod
27
 
28
  translator = pipeline("translation", model="Helsinki-NLP/opus-mt-en-fr")
29
 
30
- input = st.text_area("Input", default_value, height = 10)
31
  outputs = translator(input)
32
  st.write("Translated Example:")
33
  translated_text = translator("How are you?")
 
11
  st.write("Try it yourself here πŸ‘‡πŸ»")
12
 
13
 
14
+ generator = pipeline("text2text-generation", model = "mrm8488/t5-small-finetuned-quora-for-paraphrasing", key = "generation")
15
 
16
  default_value = "How can I put out grease fire?"
17
  sent = st.text_area("Input", default_value, height = 10)
 
27
 
28
  translator = pipeline("translation", model="Helsinki-NLP/opus-mt-en-fr")
29
 
30
+ input = st.text_area("Input", default_value, height = 10, key = "translation")
31
  outputs = translator(input)
32
  st.write("Translated Example:")
33
  translated_text = translator("How are you?")