Add top-level config.json so default download-counting rule applies at repo root
Browse files- config.json +27 -0
config.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"model_name": "OppaiOracle",
|
| 3 |
+
"version": "V1",
|
| 4 |
+
"architecture_type": "vit",
|
| 5 |
+
"num_labels": 19294,
|
| 6 |
+
"image_size": 320,
|
| 7 |
+
"patch_size": 16,
|
| 8 |
+
"hidden_size": 1024,
|
| 9 |
+
"num_hidden_layers": 18,
|
| 10 |
+
"num_attention_heads": 16,
|
| 11 |
+
"intermediate_size": 4096,
|
| 12 |
+
"variants": {
|
| 13 |
+
"V1_safetensors": {
|
| 14 |
+
"format": "safetensors",
|
| 15 |
+
"config": "V1_safetensors/config.json",
|
| 16 |
+
"weights": "V1_safetensors/model.safetensors"
|
| 17 |
+
},
|
| 18 |
+
"V1_onnx": {
|
| 19 |
+
"format": "onnx",
|
| 20 |
+
"config": "V1_onnx/config.json",
|
| 21 |
+
"weights": "V1_onnx/model.onnx"
|
| 22 |
+
}
|
| 23 |
+
},
|
| 24 |
+
"vocab_format_version": 1,
|
| 25 |
+
"vocab_sha256": "b9f95e88fb7e30669077bb761e9a66642ec526c1e10d65336a2a2b628141199d",
|
| 26 |
+
"checkpoint_source": "experiments/run1_vit/checkpoints/last.pt (epoch 33)"
|
| 27 |
+
}
|