jaydenccc commited on
Commit
a4439c6
·
1 Parent(s): 5911668

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -22,7 +22,7 @@ def make_inference(synopsis):
22
  )
23
 
24
  with torch.cuda.amp.autocast():
25
- output_tokens = model.generate(**batch, max_new_tokens=50)
26
 
27
  return tokenizer.decode(output_tokens[0], skip_special_tokens=True)
28
 
 
22
  )
23
 
24
  with torch.cuda.amp.autocast():
25
+ output_tokens = model.generate(**batch, max_new_tokens=200)
26
 
27
  return tokenizer.decode(output_tokens[0], skip_special_tokens=True)
28