moranyanuka
commited on
Commit
•
adffc0c
1
Parent(s):
9ffd44a
Update README.md
Browse files
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
|
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
|
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 on the beach
|
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 |
+
>>> there is a woman and a dog on the beach at sunset
|
111 |
```
|
112 |
</details>
|
113 |
|