FahadAlam commited on
Commit
00cab09
·
1 Parent(s): 4564fea

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -0
app.py CHANGED
@@ -13,6 +13,7 @@ def paraphrase_text(input_text, max_length):
13
  tgt_text = tokenizer.batch_decode(translated, skip_special_tokens=True)
14
  return tgt_text[0], tgt_text[1], tgt_text[2]
15
 
 
16
  examples = [["Begin your professional career by learning data science skills with Data science Dojo, a globally recognized e-learning platform where we teach students how to learn data science, data analytics, machine learning and more.", "45"], ["Hello, I am a paraphrasing tool. How can I help you?", "30"]]
17
 
18
  demo = gr.Interface(fn=paraphrase_text, inputs=["text", "text"], outputs=["text", "text", "text"], title="Paraphrase", examples=examples)
 
13
  tgt_text = tokenizer.batch_decode(translated, skip_special_tokens=True)
14
  return tgt_text[0], tgt_text[1], tgt_text[2]
15
 
16
+
17
  examples = [["Begin your professional career by learning data science skills with Data science Dojo, a globally recognized e-learning platform where we teach students how to learn data science, data analytics, machine learning and more.", "45"], ["Hello, I am a paraphrasing tool. How can I help you?", "30"]]
18
 
19
  demo = gr.Interface(fn=paraphrase_text, inputs=["text", "text"], outputs=["text", "text", "text"], title="Paraphrase", examples=examples)