PhantHive commited on
Commit
a2bfd19
1 Parent(s): e996c42

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -17,7 +17,7 @@ def greet(text):
17
 
18
  # Use torch.no_grad to disable gradient calculation
19
  with torch.no_grad():
20
- output_tokens = model.generate(**batch, do_sample=True, max_new_tokens=50, temperature=0.9, num_beams=5)
21
 
22
  return tokenizer.decode(output_tokens[0], skip_special_tokens=True)
23
 
 
17
 
18
  # Use torch.no_grad to disable gradient calculation
19
  with torch.no_grad():
20
+ output_tokens = model.generate(**batch, do_sample=True, max_new_tokens=50, temperature=0.9)
21
 
22
  return tokenizer.decode(output_tokens[0], skip_special_tokens=True)
23