system HF staff commited on
Commit
3385dcf
1 Parent(s): efd04df

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +55 -0
config.json ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation_dropout": 0.0,
3
+ "activation_function": "gelu",
4
+ "add_bias_logits": false,
5
+ "add_final_layer_norm": false,
6
+ "architectures": [
7
+ "BlenderbotForConditionalGeneration"
8
+ ],
9
+ "attention_dropout": 0.0,
10
+ "bos_token_id": 1,
11
+ "decoder_start_token_id": 1,
12
+ "pad_token_id": 0,
13
+ "unk_token_id": 3,
14
+ "eos_token_id": 2,
15
+ "classif_dropout": 0.0,
16
+ "d_model": 512,
17
+ "decoder_attention_heads": 16,
18
+ "decoder_ffn_dim": 2048,
19
+ "decoder_layerdrop": 0.0,
20
+ "decoder_layers": 8,
21
+ "dropout": 0.1,
22
+ "encoder_attention_heads": 16,
23
+ "encoder_ffn_dim": 2048,
24
+ "encoder_layerdrop": 0.0,
25
+ "encoder_layers": 8,
26
+
27
+ "extra_pos_embeddings": 0,
28
+ "id2label": {
29
+ "0": "LABEL_0",
30
+ "1": "LABEL_1",
31
+ "2": "LABEL_2"
32
+ },
33
+ "init_std": 0.02,
34
+ "is_encoder_decoder": true,
35
+ "label2id": {
36
+ "LABEL_0": 0,
37
+ "LABEL_1": 1,
38
+ "LABEL_2": 2
39
+ },
40
+ "length_penalty": 0.65,
41
+ "max_length": 128,
42
+ "max_position_embeddings": 512,
43
+ "min_length": 20,
44
+ "model_type": "blenderbot",
45
+ "no_repeat_ngram_size": 3,
46
+ "normalize_before": false,
47
+ "normalize_embedding": true,
48
+ "num_beams": 10,
49
+ "num_hidden_layers": 8,
50
+ "scale_embedding": true,
51
+ "static_position_embeddings": false,
52
+ "variant": "xlm",
53
+
54
+ "vocab_size": 54944
55
+ }