daanjiri commited on
Commit
b9315f5
·
verified ·
1 Parent(s): d2094f9

mistral config

Browse files
Files changed (1) hide show
  1. config.json +11 -14
config.json CHANGED
@@ -1,18 +1,15 @@
1
  {
2
- "_name_or_path": "meta-llama/Meta-Llama-3-8B-Instruct",
3
- "architectures": [
4
- "LlamaForCausalLM"
5
- ],
6
- "attention_bias": false,
7
  "attention_dropout": 0.0,
8
- "bos_token_id": 128000,
9
- "eos_token_id": 128001,
10
  "hidden_act": "silu",
11
  "hidden_size": 4096,
12
  "initializer_range": 0.02,
13
  "intermediate_size": 14336,
14
- "max_position_embeddings": 8192,
15
- "model_type": "llama",
16
  "num_attention_heads": 32,
17
  "num_hidden_layers": 32,
18
  "num_key_value_heads": 8,
@@ -32,12 +29,12 @@
32
  "load_in_8bit": false,
33
  "quant_method": "bitsandbytes"
34
  },
35
- "rms_norm_eps": 1e-05,
36
- "rope_scaling": null,
37
- "rope_theta": 500000.0,
38
  "tie_word_embeddings": false,
39
  "torch_dtype": "bfloat16",
40
- "transformers_version": "4.40.0",
41
  "use_cache": true,
42
- "vocab_size": 128256
43
  }
 
1
  {
2
+ "_name_or_path": "BioMistral/BioMistral-7B",
3
+ "architectures": ["MistralForCausalLM"],
 
 
 
4
  "attention_dropout": 0.0,
5
+ "bos_token_id": 1,
6
+ "eos_token_id": 2,
7
  "hidden_act": "silu",
8
  "hidden_size": 4096,
9
  "initializer_range": 0.02,
10
  "intermediate_size": 14336,
11
+ "max_position_embeddings": 32768,
12
+ "model_type": "mistral",
13
  "num_attention_heads": 32,
14
  "num_hidden_layers": 32,
15
  "num_key_value_heads": 8,
 
29
  "load_in_8bit": false,
30
  "quant_method": "bitsandbytes"
31
  },
32
+ "rms_norm_eps": 1e-5,
33
+ "rope_theta": 10000.0,
34
+ "sliding_window": 4096,
35
  "tie_word_embeddings": false,
36
  "torch_dtype": "bfloat16",
37
+ "transformers_version": "4.39.3",
38
  "use_cache": true,
39
+ "vocab_size": 32000
40
  }