Create config.json
Browse files- config.json +32 -0
config.json
ADDED
|
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"DINOv3ViTModel"
|
| 4 |
+
],
|
| 5 |
+
"attention_dropout": 0.0,
|
| 6 |
+
"drop_path_rate": 0.0,
|
| 7 |
+
"hidden_act": "gelu",
|
| 8 |
+
"hidden_size": 384,
|
| 9 |
+
"image_size": 224,
|
| 10 |
+
"initializer_range": 0.02,
|
| 11 |
+
"intermediate_size": 1536,
|
| 12 |
+
"key_bias": false,
|
| 13 |
+
"layer_norm_eps": 1e-05,
|
| 14 |
+
"layerscale_value": 1.0,
|
| 15 |
+
"mlp_bias": true,
|
| 16 |
+
"model_type": "dinov3_vit",
|
| 17 |
+
"num_attention_heads": 6,
|
| 18 |
+
"num_channels": 3,
|
| 19 |
+
"num_hidden_layers": 12,
|
| 20 |
+
"num_register_tokens": 4,
|
| 21 |
+
"patch_size": 16,
|
| 22 |
+
"pos_embed_jitter": null,
|
| 23 |
+
"pos_embed_rescale": 2.0,
|
| 24 |
+
"pos_embed_shift": null,
|
| 25 |
+
"proj_bias": true,
|
| 26 |
+
"query_bias": true,
|
| 27 |
+
"rope_theta": 100.0,
|
| 28 |
+
"torch_dtype": "float32",
|
| 29 |
+
"transformers_version": "4.56.0.dev0",
|
| 30 |
+
"use_gated_mlp": false,
|
| 31 |
+
"value_bias": true
|
| 32 |
+
}
|