kvtk1720 commited on
Commit
9c0fa8b
1 Parent(s): cb27dc6

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +9 -30
config.json CHANGED
@@ -1,31 +1,10 @@
1
- 642 Bytes
2
- {
3
- "activation_function": "gelu_new",
4
- "architectures": [
5
- "GPT2LMHeadModel"
6
- ],
7
- "attn_pdrop": 0.1,
8
- "bos_token_id": 50256,
9
- "embd_pdrop": 0.1,
10
- "eos_token_id": 50256,
11
- "initializer_range": 0.02,
12
- "layer_norm_epsilon": 1e-05,
13
- "model_type": "gpt2",
14
- "n_ctx": 1024,
15
- "n_embd": 1024,
16
- "n_head": 16,
17
- "n_layer": 24,
18
- "n_positions": 1024,
19
- "resid_pdrop": 0.1,
20
- "summary_activation": null,
21
- "summary_first_dropout": 0.1,
22
- "summary_proj_to_labels": true,
23
- "summary_type": "cls_index",
24
- "summary_use_proj": true,
25
- "task_specific_params": {
26
- "conversational": {
27
- "max_length": 1000
28
  }
29
- },
30
- "vocab_size": 50257
31
- }
 
1
+
2
+ {
3
+ "model_type": "causal_lm",
4
+ "vocab_size": 50265,
5
+ "hidden_size": 768,
6
+ "num_attention_heads": 12,
7
+ "num_hidden_layers": 12,
8
+ "pad_token_id": 0,
9
+ "eos_token_id": 1,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
10
  }