Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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)
|