mrcoombes commited on
Commit
529a164
·
1 Parent(s): 804b705

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +65 -0
config.json ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert-base-uncased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForSequenceClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "dim": 768,
9
+ "dropout": 0.1,
10
+ "hidden_dim": 3072,
11
+ "id2label": {
12
+ "0": "Bug",
13
+ "1": "Dark",
14
+ "2": "Dragon",
15
+ "3": "Electric",
16
+ "4": "Fairy",
17
+ "5": "Fighting",
18
+ "6": "Fire",
19
+ "7": "Flying",
20
+ "8": "Ghost",
21
+ "9": "Grass",
22
+ "10": "Ground",
23
+ "11": "Ice",
24
+ "12": "Normal",
25
+ "13": "Poison",
26
+ "14": "Psychic",
27
+ "15": "Rock",
28
+ "16": "Steel",
29
+ "17": "Water"
30
+ },
31
+ "initializer_range": 0.02,
32
+ "label2id": {
33
+ "Bug": 0,
34
+ "Dark": 1,
35
+ "Dragon": 2,
36
+ "Electric": 3,
37
+ "Fairy": 4,
38
+ "Fighting": 5,
39
+ "Fire": 6,
40
+ "Flying": 7,
41
+ "Ghost": 8,
42
+ "Grass": 9,
43
+ "Ground": 10,
44
+ "Ice": 11,
45
+ "Normal": 12,
46
+ "Poison": 13,
47
+ "Psychic": 14,
48
+ "Rock": 15,
49
+ "Steel": 16,
50
+ "Water": 17
51
+ },
52
+ "max_position_embeddings": 512,
53
+ "model_type": "distilbert",
54
+ "n_heads": 12,
55
+ "n_layers": 6,
56
+ "pad_token_id": 0,
57
+ "problem_type": "single_label_classification",
58
+ "qa_dropout": 0.1,
59
+ "seq_classif_dropout": 0.2,
60
+ "sinusoidal_pos_embds": false,
61
+ "tie_weights_": true,
62
+ "torch_dtype": "float32",
63
+ "transformers_version": "4.19.2",
64
+ "vocab_size": 30522
65
+ }