Safetensors
File size: 735 Bytes
d73a571
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
## Download Vision Encoder (Required)

This model requires an additional vision encoder `siglip2-base-p32-256-ve`


```bash
git lfs install

# from HuggingFace
git clone https://huggingface.co/jingyaogong/siglip2-base-p32-256-ve

# or from ModelScope
git clone https://modelscope.cn/models/gongjy/siglip2-base-p32-256-ve
```

Directory Structure

```
model/
β”œβ”€β”€ siglip2-base-p32-256-ve/        # Vision Encoder (Required)
β”‚   β”œβ”€β”€ config.json
β”‚   β”œβ”€β”€ model.safetensors           # ~180MB, float16
β”‚   └── preprocessor_config.json
β”œβ”€β”€ model_minimind.py               # LLM structure
β”œβ”€β”€ model_vlm.py                    # VLM structure
β”œβ”€β”€ tokenizer.json
└── tokenizer_config.json
```