Spaces:
Runtime error
Runtime error
Commit
·
dd1a287
1
Parent(s):
3747804
removed fullstop
Browse files
app.py
CHANGED
@@ -30,7 +30,7 @@ def paraphraser(text):
|
|
30 |
begin=time.time()
|
31 |
x=[cleaned_para(str(i)) for i in sentensizer(text)]
|
32 |
end=time.time()
|
33 |
-
return ("
|
34 |
|
35 |
interface=gr.Interface(fn=paraphraser,inputs="text",outputs=["text"],title="Paraphraser",description="A paraphrasing tool to kill quillbot")
|
36 |
interface.launch()
|
|
|
30 |
begin=time.time()
|
31 |
x=[cleaned_para(str(i)) for i in sentensizer(text)]
|
32 |
end=time.time()
|
33 |
+
return ("".join(x))
|
34 |
|
35 |
interface=gr.Interface(fn=paraphraser,inputs="text",outputs=["text"],title="Paraphraser",description="A paraphrasing tool to kill quillbot")
|
36 |
interface.launch()
|