mengshyu commited on
Commit
3a8aa9d
·
1 Parent(s): a2d3047

Fix configuration field names in mlc-chat-config.json

Browse files

- Corrected "field_model_type" to "model_type"
- Corrected "field_model_config" to "model_config"

Files changed (1) hide show
  1. mlc-chat-config.json +3 -3
mlc-chat-config.json CHANGED
@@ -1,8 +1,8 @@
1
  {
2
  "version": "0.1.0",
3
- "field_model_type": "mistral",
4
  "quantization": "q4f32_1",
5
- "field_model_config": {
6
  "hidden_size": 4096,
7
  "intermediate_size": 14336,
8
  "num_attention_heads": 32,
@@ -78,4 +78,4 @@
78
  "mean_gen_len": 128,
79
  "max_gen_len": 512,
80
  "shift_fill_factor": 0.3
81
- }
 
1
  {
2
  "version": "0.1.0",
3
+ "model_type": "mistral",
4
  "quantization": "q4f32_1",
5
+ "model_config": {
6
  "hidden_size": 4096,
7
  "intermediate_size": 14336,
8
  "num_attention_heads": 32,
 
78
  "mean_gen_len": 128,
79
  "max_gen_len": 512,
80
  "shift_fill_factor": 0.3
81
+ }