Create config.json
Browse files- config.json +16 -0
config.json
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_type": "idefics3",
|
| 3 |
+
"architectures": ["Idefics3ForConditionalGeneration"],
|
| 4 |
+
"torch_dtype": "float32",
|
| 5 |
+
"vision_config": {
|
| 6 |
+
"image_size": 224,
|
| 7 |
+
"patch_size": 16,
|
| 8 |
+
"num_channels": 3,
|
| 9 |
+
"hidden_size": 768
|
| 10 |
+
},
|
| 11 |
+
"text_config": {
|
| 12 |
+
"hidden_size": 768,
|
| 13 |
+
"num_attention_heads": 12,
|
| 14 |
+
"num_hidden_layers": 12
|
| 15 |
+
}
|
| 16 |
+
}
|