Fix: Replace non-executable >>> prompt style with valid syntax in example code
#43
by
anon-repair-bot
- opened
README.md
CHANGED
@@ -121,7 +121,7 @@ inputs = processor(raw_image, return_tensors="pt").to("cuda", torch.float16)
|
|
121 |
|
122 |
out = model.generate(**inputs)
|
123 |
print(processor.decode(out[0], skip_special_tokens=True))
|
124 |
-
>>> a woman sitting on the beach with her dog
|
125 |
```
|
126 |
</details>
|
127 |
|
|
|
121 |
|
122 |
out = model.generate(**inputs)
|
123 |
print(processor.decode(out[0], skip_special_tokens=True))
|
124 |
+
# >>> a woman sitting on the beach with her dog
|
125 |
```
|
126 |
</details>
|
127 |
|