Views
No views yet
peft_type: LORA
r: 64
lora_alpha: 128
lora_dropout: 0.05
target_modules: [q_proj, k_proj, v_proj, o_proj, gate_proj, up_proj, down_proj]
base_model_name_or_path: (an internal v8-32b BF16 merge — see below)Base-model note: The adapter'sadapter_config.jsonreferences an internal predecessor checkpoint (v8-32b/merged-bf16-c300) as its base. The merged FP8 production model was built by applying THIS adapter to THAT predecessor base and then quantizing. To reproduce the merge against the public Qwen3-VL-32B base, expect slight numerical differences.
1from transformers import AutoModelForCausalLM
2from peft import PeftModel
3
4base = AutoModelForCausalLM.from_pretrained(
5 "Qwen/Qwen3-VL-32B-Instruct",
6 torch_dtype="auto",
7 device_map="auto",
8)
9model = PeftModel.from_pretrained(base, "acatorcini/qwen3-vl-32b-soccer-v11-lora")