EricHallahan commited on
Commit
9dd387f
1 Parent(s): b1bf2ae

Update config.json

Browse files

- Normalize formatting to match the GPT-2 config

Files changed (1) hide show
  1. config.json +34 -38
config.json CHANGED
@@ -1,40 +1,36 @@
1
  {
2
- "activation_function": "gelu_new",
3
- "architectures": [
4
- "GPTJForCausalLM"
5
- ],
6
- "attention_dropout": 0,
7
- "bos_token_id": 50256,
8
- "embed_dropout": 0,
9
- "eos_token_id": 50256,
10
- "jax": true,
11
- "rotary": true,
12
- "rotary_dim": 64,
13
- "gradient_checkpointing": false,
14
- "n_embd": 4096,
15
- "initializer_range": 0.02,
16
- "intermediate_size": null,
17
- "layer_norm_epsilon": 1e-05,
18
- "n_positions": 2048,
19
- "model_type": "gptj",
20
- "n_head": 16,
21
- "n_layer": 28,
22
- "rotary_dim": 64,
23
- "summary_activation": null,
24
- "summary_first_dropout": 0.1,
25
- "summary_proj_to_labels": true,
26
- "summary_type": "cls_index",
27
- "summary_use_proj": true,
28
- "transformers_version": "4.10.0.dev0",
29
- "use_cache": true,
30
- "vocab_size": 50400,
31
- "window_size": 256,
32
- "tokenizer_class": "GPT2Tokenizer",
33
- "task_specific_params": {
34
- "text-generation": {
35
- "do_sample": true,
36
- "temperature": 1.0,
37
- "max_length": 50
38
- }
39
  }
40
- }
 
 
 
1
  {
2
+ "activation_function": "gelu_new",
3
+ "architectures": [
4
+ "GPTJForCausalLM"
5
+ ],
6
+ "attn_pdrop": 0.0,
7
+ "bos_token_id": 50256,
8
+ "embd_pdrop": 0.0,
9
+ "eos_token_id": 50256,
10
+ "gradient_checkpointing": false,
11
+ "initializer_range": 0.02,
12
+ "layer_norm_epsilon": 1e-05,
13
+ "model_type": "gptj",
14
+ "n_embd": 4096,
15
+ "n_head": 16,
16
+ "n_layer": 28,
17
+ "n_positions": 2048,
18
+ "rotary": true,
19
+ "rotary_dim": 64,
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
+ "transformers_version": "4.10.0.dev0",
26
+ "tokenizer_class": "GPT2Tokenizer",
27
+ "task_specific_params": {
28
+ "text-generation": {
29
+ "do_sample": true,
30
+ "temperature": 1.0,
31
+ "max_length": 50
 
 
 
 
 
 
 
32
  }
33
+ },
34
+ "use_cache": true,
35
+ "vocab_size": 50400
36
+ }