system HF staff commited on
Commit
c6cca95
1 Parent(s): 46e5305

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +48 -0
config.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation": "gelu",
3
+ "architectures": [
4
+ "DistilBertForMaskedLM"
5
+ ],
6
+ "attention_dropout": 0.1,
7
+ "bos_token_id": 0,
8
+ "dim": 768,
9
+ "do_sample": false,
10
+ "dropout": 0.1,
11
+ "eos_token_ids": 0,
12
+ "finetuning_task": "mnli",
13
+ "hidden_dim": 3072,
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
+ "length_penalty": 1.0,
25
+ "max_length": 20,
26
+ "max_position_embeddings": 512,
27
+ "n_heads": 12,
28
+ "n_layers": 6,
29
+ "num_beams": 1,
30
+ "num_labels": 3,
31
+ "num_return_sequences": 1,
32
+ "output_attentions": false,
33
+ "output_hidden_states": false,
34
+ "output_past": true,
35
+ "pad_token_id": 0,
36
+ "pruned_heads": {},
37
+ "qa_dropout": 0.1,
38
+ "repetition_penalty": 1.0,
39
+ "seq_classif_dropout": 0.2,
40
+ "sinusoidal_pos_embds": false,
41
+ "temperature": 1.0,
42
+ "tie_weights_": true,
43
+ "top_k": 50,
44
+ "top_p": 1.0,
45
+ "torchscript": false,
46
+ "use_bfloat16": false,
47
+ "vocab_size": 30522
48
+ }