AyaGL commited on
Commit
4d1c1cf
·
verified ·
1 Parent(s): ccc56ef

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +61 -0
config.json ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_type": "steerling",
3
+ "auto_map": {
4
+ "AutoConfig": "configuration_steerling.SteerlingConfig",
5
+ "AutoModel": "modeling_steerling.SteerlingForCausalLM",
6
+ "AutoModelForCausalLM": "modeling_steerling.SteerlingForCausalLM",
7
+ "AutoTokenizer": ["tokenization_steerling.SteerlingTokenizer", null]
8
+ },
9
+ "architectures": ["SteerlingForCausalLM"],
10
+ "interpretable": true,
11
+ "vocab_size": 100284,
12
+ "n_layers": 32,
13
+ "n_head": 32,
14
+ "n_embd": 4096,
15
+ "n_kv_heads": 4,
16
+ "block_size": 4096,
17
+ "diff_block_size": 64,
18
+ "use_rms_norm": true,
19
+ "norm_eps": 1e-05,
20
+ "norm_order": "post",
21
+ "use_qk_norm": true,
22
+ "use_rope": true,
23
+ "rope_base": 500000.0,
24
+ "rope_full_precision": true,
25
+ "clip_qkv": 10.0,
26
+ "mlp_type": "swiglu",
27
+ "activation": "gelu",
28
+ "mlp_ratio": 4,
29
+ "intermediate_size": null,
30
+ "use_bias": false,
31
+ "weight_sharing": true,
32
+ "pad_token_id": 100277,
33
+ "bos_token_id": 100278,
34
+ "eos_token_id": 100257,
35
+ "mask_token_id": 100280,
36
+ "endofchunk_token_id": 100279,
37
+ "n_concepts": 33732,
38
+ "n_unknown_concepts": 101196,
39
+ "concept_dim": 4096,
40
+ "use_attention_known": false,
41
+ "use_attention_unknown": false,
42
+ "topk_known": 32,
43
+ "topk_known_features": 32,
44
+ "unknown_topk": 128,
45
+ "use_unknown": true,
46
+ "apply_topk_to_unknown": true,
47
+ "topk_on_logits": false,
48
+ "factorize_unknown": true,
49
+ "factorize_rank": 256,
50
+ "use_epsilon_correction": true,
51
+ "concept_block_size": 4096,
52
+ "pad_multiple": 16,
53
+ "store_unknown_weights": false,
54
+ "inject_layer": 16,
55
+ "inject_alpha": 1.0,
56
+ "torch_dtype": "bfloat16",
57
+ "transformers_version": "4.48.0",
58
+ "start_header_id": 100281,
59
+ "end_header_id": 100282,
60
+ "eot_id": 100283
61
+ }