system HF staff commited on
Commit
2773dde
1 Parent(s): f647710

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +60 -0
config.json ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation_function": "gelu_new",
3
+ "architectures": [
4
+ "GPT2DoubleHeadsModel"
5
+ ],
6
+ "attn_pdrop": 0.1,
7
+ "bos_token_id": 50256,
8
+ "do_sample": false,
9
+ "embd_pdrop": 0.1,
10
+ "eos_token_id": 50256,
11
+ "eos_token_ids": 0,
12
+ "finetuning_task": "swag",
13
+ "hidden_dropout_prob": 0.1,
14
+ "id2label": {
15
+ "0": "LABEL_0",
16
+ "1": "LABEL_1"
17
+ },
18
+ "initializer_range": 0.02,
19
+ "is_decoder": false,
20
+ "label2id": {
21
+ "LABEL_0": 0,
22
+ "LABEL_1": 1
23
+ },
24
+ "layer_norm_epsilon": 1e-05,
25
+ "length_penalty": 1.0,
26
+ "max_length": 20,
27
+ "model_type": "gpt2",
28
+ "n_ctx": 1024,
29
+ "n_embd": 768,
30
+ "n_head": 12,
31
+ "n_layer": 12,
32
+ "n_positions": 1024,
33
+ "num_beams": 1,
34
+ "num_labels": 1,
35
+ "num_return_sequences": 1,
36
+ "output_attentions": false,
37
+ "output_hidden_states": false,
38
+ "output_past": true,
39
+ "pad_token_id": 0,
40
+ "pruned_heads": {},
41
+ "repetition_penalty": 1.0,
42
+ "resid_pdrop": 0.1,
43
+ "summary_activation": null,
44
+ "summary_first_dropout": 0.1,
45
+ "summary_proj_to_labels": true,
46
+ "summary_type": "cls_index",
47
+ "summary_use_proj": true,
48
+ "task_specific_params": {
49
+ "text-generation": {
50
+ "do_sample": true,
51
+ "max_length": 50
52
+ }
53
+ },
54
+ "temperature": 1.0,
55
+ "top_k": 50,
56
+ "top_p": 1.0,
57
+ "torchscript": false,
58
+ "use_bfloat16": false,
59
+ "vocab_size": 50257
60
+ }