Vaishakhh commited on
Commit
632f66f
1 Parent(s): c32dc43

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -77,7 +77,7 @@ def get_fun(txt):
77
 
78
  txt_paraphrase=''
79
  for phrase in tokens:
80
- tmp=get_response(phrase,num_return_sequences=2,num_beams=2)
81
  txt_paraphrase=txt_paraphrase+' '+tmp
82
  return txt_paraphrase
83
 
 
77
 
78
  txt_paraphrase=''
79
  for phrase in tokens:
80
+ tmp=get_response(phrase,num_return_sequences=30,num_beams=30)
81
  txt_paraphrase=txt_paraphrase+' '+tmp
82
  return txt_paraphrase
83