Upload config.json with huggingface_hub
Browse files- config.json +25 -0
config.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "multimodal",
|
| 3 |
+
"base_model": "Qwen/Qwen2.5-7B-Instruct",
|
| 4 |
+
"vision_encoder": "openai/clip-vit-large-patch14",
|
| 5 |
+
"modalities": {
|
| 6 |
+
"input": [
|
| 7 |
+
"image",
|
| 8 |
+
"text"
|
| 9 |
+
],
|
| 10 |
+
"output": [
|
| 11 |
+
"text"
|
| 12 |
+
]
|
| 13 |
+
},
|
| 14 |
+
"projection": {
|
| 15 |
+
"type": "mlp",
|
| 16 |
+
"hidden_size": 1024,
|
| 17 |
+
"num_layers": 2,
|
| 18 |
+
"dropout": 0.1
|
| 19 |
+
},
|
| 20 |
+
"max_seq_length": 4096,
|
| 21 |
+
"special_tokens": {
|
| 22 |
+
"image_start": "<img>",
|
| 23 |
+
"image_end": "</img>"
|
| 24 |
+
}
|
| 25 |
+
}
|