File size: 1,069 Bytes
fff1a43
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
license: apache-2.0
base_model: unsloth/Qwen2.5-VL-3B-Instruct-bnb-4bit
merges:
  - adapter: final_model
    method: merge_and_unload
    date: 2025-06-04
tags:
  - vision-language
  - lora-merged
  - qwen2.5-vl
---

# 🐍 Merged Qwen2.5-VL Model (LoRA + Base)

This repository contains the **merged** weights of **LoRA adapter** located at `./final_model` and the base
model **unsloth/Qwen2.5-VL-3B-Instruct-bnb-4bit**.  

The merge was performed with `peft.merge_and_unload()` on 2025-06-04.

## Usage

```python
from unsloth import FastVisionModel

model, tokenizer = FastVisionModel.from_pretrained("Litian2002/Qwen2.5-VL-3B-Spatial-bnb-4bit")
model = FastVisionModel.for_inference(model) # Enable native 2x faster inference

# Your inference code here
```

Or with transformers:

```python
from transformers import AutoModel, AutoTokenizer

model = AutoModel.from_pretrained("Litian2002/Qwen2.5-VL-3B-Spatial-bnb-4bit", trust_remote_code=True)
tokenizer = AutoTokenizer.from_pretrained("Litian2002/Qwen2.5-VL-3B-Spatial-bnb-4bit", trust_remote_code=True)
```