Update README.md
Browse files
README.md
CHANGED
|
@@ -17,6 +17,8 @@ model = Qwen3VLForConditionalGeneration.from_pretrained(
|
|
| 17 |
device_map="auto",
|
| 18 |
)
|
| 19 |
|
|
|
|
|
|
|
| 20 |
processor = AutoProcessor.from_pretrained("Qwen3-8B-VL-bnb-8bit")
|
| 21 |
|
| 22 |
messages = [
|
|
|
|
| 17 |
device_map="auto",
|
| 18 |
)
|
| 19 |
|
| 20 |
+
# Qwen3VLForConditionalGeneration isn't available on transformers<4.57 but AutoModelForImageTextToText works just fine on lower versions of transformers
|
| 21 |
+
|
| 22 |
processor = AutoProcessor.from_pretrained("Qwen3-8B-VL-bnb-8bit")
|
| 23 |
|
| 24 |
messages = [
|