Hack90 commited on
Commit
2b126ef
·
verified ·
1 Parent(s): 2dc7087

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +54 -0
config.json ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation_type": "silu",
3
+ "alibi": false,
4
+ "alibi_bias_max": 8.0,
5
+ "architectures": [
6
+ "LLaDAModelLM"
7
+ ],
8
+ "attention_dropout": 0.0,
9
+ "attention_layer_norm": false,
10
+ "attention_layer_norm_with_affine": true,
11
+ "auto_map": {
12
+ "AutoConfig": "configuration_llada.LLaDAConfig",
13
+ "AutoModelForCausalLM": "modeling_llada.LLaDAModelLM",
14
+ "AutoModel": "modeling_llada.LLaDAModelLM"
15
+ },
16
+ "bias_for_layer_norm": false,
17
+ "block_group_size": 1,
18
+ "block_type": "llama",
19
+ "d_model": 4096,
20
+ "embedding_dropout": 0.0,
21
+ "embedding_size": 126464,
22
+ "eos_token_id": 126081,
23
+ "flash_attention": false,
24
+ "include_bias": false,
25
+ "include_qkv_bias": false,
26
+ "init_cutoff_factor": null,
27
+ "init_device": "meta",
28
+ "init_fn": "mitchell",
29
+ "init_std": 0.02,
30
+ "input_emb_norm": false,
31
+ "layer_norm_type": "rms",
32
+ "layer_norm_with_affine": true,
33
+ "mask_token_id": 126336,
34
+ "max_sequence_length": 4096,
35
+ "mlp_hidden_size": 12288,
36
+ "mlp_ratio": 4,
37
+ "model_type": "llada",
38
+ "multi_query_attention": null,
39
+ "n_heads": 32,
40
+ "n_kv_heads": 32,
41
+ "n_layers": 32,
42
+ "pad_token_id": 126081,
43
+ "precision": "amp_bf16",
44
+ "residual_dropout": 0.0,
45
+ "rms_norm_eps": 1e-05,
46
+ "rope": true,
47
+ "rope_full_precision": true,
48
+ "rope_theta": 500000.0,
49
+ "scale_logits": false,
50
+ "transformers_version": "4.46.3",
51
+ "use_cache": false,
52
+ "vocab_size": 126464,
53
+ "weight_tying": false
54
+ }