Update README.md
Browse files
README.md
CHANGED
|
@@ -51,11 +51,11 @@ By merging the strengths of Qwen3 and Qwen2.5-VL, this model inherits both **adv
|
|
| 51 |
## Quickstart
|
| 52 |
|
| 53 |
```python
|
| 54 |
-
from transformers import
|
| 55 |
from qwen_vl_utils import process_vision_info
|
| 56 |
|
| 57 |
# Load the merged model
|
| 58 |
-
model =
|
| 59 |
"YOUR_REPO_NAME/Qwen3-VL-Merged",
|
| 60 |
torch_dtype="auto",
|
| 61 |
device_map="auto"
|
|
|
|
| 51 |
## Quickstart
|
| 52 |
|
| 53 |
```python
|
| 54 |
+
from transformers import Qwen2_5_VLForConditionalGeneration, AutoProcessor
|
| 55 |
from qwen_vl_utils import process_vision_info
|
| 56 |
|
| 57 |
# Load the merged model
|
| 58 |
+
model = Qwen2_5_VLForConditionalGeneration.from_pretrained(
|
| 59 |
"YOUR_REPO_NAME/Qwen3-VL-Merged",
|
| 60 |
torch_dtype="auto",
|
| 61 |
device_map="auto"
|