Fix: Add missing model_type to config.json
Browse files- config.json +13 -0
config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"HfMoondream"
|
| 4 |
+
],
|
| 5 |
+
"auto_map": {
|
| 6 |
+
"AutoConfig": "hf_moondream.HfConfig",
|
| 7 |
+
"AutoModelForCausalLM": "hf_moondream.HfMoondream"
|
| 8 |
+
},
|
| 9 |
+
"config": {},
|
| 10 |
+
"model_type": "moondream1",
|
| 11 |
+
"torch_dtype": "bfloat16",
|
| 12 |
+
"transformers_version": "4.52.4"
|
| 13 |
+
}
|