prasanna2003 commited on
Commit
1b67c1b
·
1 Parent(s): b6d2ff6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -21,6 +21,6 @@ output: """
21
  inputs = processor(image, prompt, return_tensors="pt")
22
 
23
  output = model.generate(**inputs, max_length=100)
24
- print(tokenizer.decode(output[0]))
25
 
26
  ```
 
21
  inputs = processor(image, prompt, return_tensors="pt")
22
 
23
  output = model.generate(**inputs, max_length=100)
24
+ print(processor.tokenizer.decode(output[0]))
25
 
26
  ```