tejoess commited on
Commit
d42f000
·
1 Parent(s): 66f900a

Fix: Add missing model_type to config.json

Browse files
Files changed (1) hide show
  1. 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
- "config": {},
10
- "model_type": "moondream",
11
- "torch_dtype": "bfloat16",
12
- "transformers_version": "4.52.4"
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
+ }