Tnt3o5 commited on
Commit
f849277
·
verified ·
1 Parent(s): 30faf37

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +2 -2
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 AutoModelForCausalLM, AutoProcessor
55
  from qwen_vl_utils import process_vision_info
56
 
57
  # Load the merged model
58
- model = AutoModelForCausalLM.from_pretrained(
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"