ShynBui commited on
Commit
02deb6a
1 Parent(s): fbf7156
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -5,7 +5,7 @@ from transformers import pipeline
5
  pipe = pipeline("summarization", model="ShynBui/Bartpho_spelling_correction")
6
 
7
  def greet(text):
8
- return pipe(text)
9
 
10
  demo = gr.Interface(fn=greet, inputs=gr.Text(), outputs=gr.Text())
11
  demo.launch()
 
5
  pipe = pipeline("summarization", model="ShynBui/Bartpho_spelling_correction")
6
 
7
  def greet(text):
8
+ return pipe(text, max_new_tokens= 512)['summary_text']
9
 
10
  demo = gr.Interface(fn=greet, inputs=gr.Text(), outputs=gr.Text())
11
  demo.launch()