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