Seonguk commited on
Commit
98b8fb8
·
1 Parent(s): a2ec0cf

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +47 -0
config.json ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation_dropout": 0.0,
3
+ "activation_function": "gelu",
4
+ "add_bias_logits": false,
5
+ "add_final_layer_norm": false,
6
+ "architectures": [
7
+ "BartForConditionalGeneration"
8
+ ],
9
+ "attention_dropout": 0.0,
10
+ "bos_token_id": 0,
11
+ "classif_dropout": 0.1,
12
+ "classifier_dropout": 0.1,
13
+ "d_model": 768,
14
+ "decoder_attention_heads": 16,
15
+ "decoder_ffn_dim": 3072,
16
+ "decoder_layerdrop": 0.0,
17
+ "decoder_layers": 6,
18
+ "do_blenderbot_90_layernorm": false,
19
+ "dropout": 0.1,
20
+ "encoder_attention_heads": 16,
21
+ "encoder_ffn_dim": 3072,
22
+ "encoder_layerdrop": 0.0,
23
+ "encoder_layers": 6,
24
+ "eos_token_id": 1,
25
+ "extra_pos_embeddings": 2,
26
+ "force_bos_token_to_be_generated": false,
27
+ "id2label": {
28
+ "0": "NEGATIVE",
29
+ "1": "POSITIVE"
30
+ },
31
+ "init_std": 0.02,
32
+ "is_encoder_decoder": true,
33
+ "label2id": {
34
+ "NEGATIVE": 0,
35
+ "POSITIVE": 1
36
+ },
37
+ "max_position_embeddings": 1026,
38
+ "model_type": "bart",
39
+ "normalize_before": false,
40
+ "normalize_embedding": true,
41
+ "num_hidden_layers": 6,
42
+ "pad_token_id": 3,
43
+ "scale_embedding": false,
44
+ "static_position_embeddings": false,
45
+ "use_cache": true,
46
+ "vocab_size": 30000
47
+ }