system HF staff commited on
Commit
c39a091
·
1 Parent(s): 95b7369

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +59 -0
config.json ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_num_labels": 3,
3
+ "activation_dropout": 0.0,
4
+ "activation_function": "gelu",
5
+ "architectures": [
6
+ "BartForSequenceClassification"
7
+ ],
8
+ "attention_dropout": 0.0,
9
+ "bos_token_id": 0,
10
+ "classif_dropout": 0.0,
11
+ "d_model": 1024,
12
+ "decoder_attention_heads": 16,
13
+ "decoder_ffn_dim": 4096,
14
+ "decoder_layerdrop": 0.0,
15
+ "decoder_layers": 12,
16
+ "do_sample": false,
17
+ "dropout": 0.1,
18
+ "early_stopping": false,
19
+ "encoder_attention_heads": 16,
20
+ "encoder_ffn_dim": 4096,
21
+ "encoder_layerdrop": 0.0,
22
+ "encoder_layers": 12,
23
+ "eos_token_id": 2,
24
+ "finetuning_task": null,
25
+ "id2label": {
26
+ "0": "contradiction",
27
+ "1": "neutral",
28
+ "2": "entailment"
29
+ },
30
+ "init_std": 0.02,
31
+ "is_decoder": false,
32
+ "is_encoder_decoder": true,
33
+ "label2id": {
34
+ "contradiction": 0,
35
+ "entailment": 2,
36
+ "neutral": 1
37
+ },
38
+ "length_penalty": 1.0,
39
+ "max_length": 20,
40
+ "max_position_embeddings": 1024,
41
+ "min_length": 0,
42
+ "model_type": "bart",
43
+ "no_repeat_ngram_size": 0,
44
+ "num_beams": 1,
45
+ "num_hidden_layers": 12,
46
+ "num_return_sequences": 1,
47
+ "output_attentions": false,
48
+ "output_hidden_states": false,
49
+ "output_past": false,
50
+ "pad_token_id": 1,
51
+ "pruned_heads": {},
52
+ "repetition_penalty": 1.0,
53
+ "temperature": 1.0,
54
+ "top_k": 50,
55
+ "top_p": 1.0,
56
+ "torchscript": false,
57
+ "use_bfloat16": false,
58
+ "vocab_size": 50265
59
+ }