qtnx commited on
Commit
87c8290
1 Parent(s): 5aa7a04

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -30,7 +30,7 @@ tokenizer = AutoTokenizer.from_pretrained(model_id, use_fast=True,)
30
 
31
  print(
32
  model.answer_question(
33
- image, "Briefly describe the image", tokenizer, max_new_tokens=128, temperature=0.3
34
  ),
35
  )
36
  ```
 
30
 
31
  print(
32
  model.answer_question(
33
+ image, "Briefly describe the image", tokenizer, max_new_tokens=128, do_sample=True, temperature=0.3
34
  ),
35
  )
36
  ```