rjiang12 commited on
Commit
5ae1949
·
1 Parent(s): 0a43eb2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +0 -3
app.py CHANGED
@@ -60,11 +60,8 @@ def generate_answer_git(processor, model, image, question):
60
  inputs["do_sample"] = True
61
  inputs["top_k"] = 50
62
  inputs["top_p"] = 0.95
63
- inputs["return_dict_in_generate"] = True
64
- inputs["output_scores"] = True
65
 
66
  out = model.generate(**inputs)
67
- print(out.scores)
68
  print(model.config.id2label)
69
  print(processor.batch_decode(out, skip_special_tokens=True))
70
 
 
60
  inputs["do_sample"] = True
61
  inputs["top_k"] = 50
62
  inputs["top_p"] = 0.95
 
 
63
 
64
  out = model.generate(**inputs)
 
65
  print(model.config.id2label)
66
  print(processor.batch_decode(out, skip_special_tokens=True))
67