moranyanuka commited on
Commit
38ead43
1 Parent(s): 576766f

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
README.md CHANGED
@@ -100,14 +100,14 @@ inputs = processor(raw_image, text, return_tensors="pt").to("cuda", torch.float1
100
 
101
  out = model.generate(**inputs)
102
  print(processor.decode(out[0], skip_special_tokens=True))
103
- # >>> a photography of a woman and her dog
104
 
105
  # unconditional image captioning
106
  inputs = processor(raw_image, return_tensors="pt").to("cuda", torch.float16)
107
 
108
  out = model.generate(**inputs)
109
  print(processor.decode(out[0], skip_special_tokens=True))
110
- >>> a woman sitting on the beach with her dog
111
  ```
112
  </details>
113
 
 
100
 
101
  out = model.generate(**inputs)
102
  print(processor.decode(out[0], skip_special_tokens=True))
103
+ # >>> a photography of a woman and a dog
104
 
105
  # unconditional image captioning
106
  inputs = processor(raw_image, return_tensors="pt").to("cuda", torch.float16)
107
 
108
  out = model.generate(**inputs)
109
  print(processor.decode(out[0], skip_special_tokens=True))
110
+ >>> a woman sitting on the beach with a dog
111
  ```
112
  </details>
113