likhonsheikh commited on
Commit
e8e565b
·
verified ·
1 Parent(s): d569902

Add config.json

Browse files
Files changed (1) hide show
  1. config.json +58 -0
config.json ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "transformer",
3
+ "architectures": ["Sheikh2_5CoderForCausalLM"],
4
+ "max_position_embeddings": 32768,
5
+ "vocab_size": 50257,
6
+ "hidden_size": 3072,
7
+ "num_attention_heads": 16,
8
+ "num_key_value_heads": 2,
9
+ "num_hidden_layers": 36,
10
+ "intermediate_size": 8192,
11
+ "pad_token_id": 0,
12
+ "eos_token_id": 1,
13
+ "bos_token_id": 2,
14
+ "rope_theta": 10000.0,
15
+ "rope_scaling": {
16
+ "type": "linear",
17
+ "factor": 8.0
18
+ },
19
+ "use_cache": true,
20
+ "tie_word_embeddings": true,
21
+ "layer_norm_epsilon": 1e-6,
22
+ "mlp_bias": false,
23
+ "attention_bias": true,
24
+ "qkv_proj_bias": true,
25
+ "rms_norm_eps": 1e-6,
26
+ "activation_function": "swiglu",
27
+ "torch_dtype": "bfloat16",
28
+ "pretraining_tp": 1,
29
+ "reduction_factor": 32,
30
+ "num_experts_per_tok": 2,
31
+ "num_local_experts": 8,
32
+ "model_name": "Sheikh-2.5-Coder",
33
+ "model_version": "1.0.0",
34
+ "training_objectives": [
35
+ "causal_language_modeling",
36
+ "instruction_tuning",
37
+ "code_generation"
38
+ ],
39
+ "supported_languages": [
40
+ "python",
41
+ "javascript",
42
+ "typescript",
43
+ "java",
44
+ "cpp",
45
+ "c",
46
+ "go",
47
+ "rust",
48
+ "php",
49
+ "ruby",
50
+ "swift",
51
+ "kotlin",
52
+ "scala",
53
+ "r",
54
+ "sql",
55
+ "html",
56
+ "css"
57
+ ]
58
+ }