pushkarraj commited on
Commit
dd1a287
·
1 Parent(s): 3747804

removed fullstop

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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 (".".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()
 
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()