SREDWise commited on
Commit
48b4787
·
verified ·
1 Parent(s): 7332a4e

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +21 -13
config.json CHANGED
@@ -1,15 +1,23 @@
1
  {
2
- "model_id": "mistralai/Mistral-7B-Instruct-v0.2",
3
- "runtime": "python",
4
- "framework": "pytorch",
5
- "python_version": "3.9",
6
- "architectures": [
7
- "MistralForCausalLM"
8
- ]
9
- "cuda_version": "11.8",
10
- "hardware": {
11
- "accelerator": "gpu",
12
- "gpu_memory": "24GB"
13
- },
14
- "allow_override_parameters": true
 
 
 
 
 
 
 
 
15
  }
 
1
  {
2
+ "architectures": ["MistralForCausalLM"],
3
+ "attention_dropout": 0.0,
4
+ "bos_token_id": 1,
5
+ "eos_token_id": 2,
6
+ "hidden_act": "silu",
7
+ "hidden_size": 4096,
8
+ "initializer_range": 0.02,
9
+ "intermediate_size": 14336,
10
+ "max_position_embeddings": 32768,
11
+ "model_type": "mistral",
12
+ "num_attention_heads": 32,
13
+ "num_hidden_layers": 32,
14
+ "num_key_value_heads": 8,
15
+ "rms_norm_eps": 1e-05,
16
+ "rope_theta": 1000000.0,
17
+ "sliding_window": null,
18
+ "tie_word_embeddings": false,
19
+ "torch_dtype": "bfloat16",
20
+ "transformers_version": "4.42.0.dev0",
21
+ "use_cache": true,
22
+ "vocab_size": 32768
23
  }