PVSRRAJU commited on
Commit
d2970ee
·
verified ·
1 Parent(s): 9767646

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +96 -0
config.json ADDED
@@ -0,0 +1,96 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "distilbert-base-uncased",
3
+ "activation": "gelu",
4
+ "architectures": [
5
+ "DistilBertForMultilabelSequenceClassification"
6
+ ],
7
+ "attention_dropout": 0.1,
8
+ "attention_probs_dropout_prob": 0.1,
9
+ "classifier_dropout": null,
10
+ "dim": 768,
11
+ "dropout": 0.1,
12
+ "hidden_act": "gelu",
13
+ "hidden_dim": 3072,
14
+ "hidden_dropout_prob": 0.1,
15
+ "hidden_size": 768,
16
+ "id2label": {
17
+ "0": "admiration",
18
+ "1": "amusement",
19
+ "2": "anger",
20
+ "3": "annoyance",
21
+ "4": "approval",
22
+ "5": "caring",
23
+ "6": "confusion",
24
+ "7": "curiosity",
25
+ "8": "desire",
26
+ "9": "disappointment",
27
+ "10": "disapproval",
28
+ "11": "disgust",
29
+ "12": "embarrassment",
30
+ "13": "excitement",
31
+ "14": "fear",
32
+ "15": "gratitude",
33
+ "16": "grief",
34
+ "17": "joy",
35
+ "18": "love",
36
+ "19": "nervousness",
37
+ "20": "optimism",
38
+ "21": "pride",
39
+ "22": "realization",
40
+ "23": "relief",
41
+ "24": "remorse",
42
+ "25": "sadness",
43
+ "26": "surprise",
44
+ "27": "neutral"
45
+ },
46
+ "initializer_range": 0.02,
47
+ "intermediate_size": 3072,
48
+ "label2id": {
49
+ "admiration": 0,
50
+ "amusement": 1,
51
+ "anger": 2,
52
+ "annoyance": 3,
53
+ "approval": 4,
54
+ "caring": 5,
55
+ "confusion": 6,
56
+ "curiosity": 7,
57
+ "desire": 8,
58
+ "disappointment": 9,
59
+ "disapproval": 10,
60
+ "disgust": 11,
61
+ "embarrassment": 12,
62
+ "excitement": 13,
63
+ "fear": 14,
64
+ "gratitude": 15,
65
+ "grief": 16,
66
+ "joy": 17,
67
+ "love": 18,
68
+ "nervousness": 19,
69
+ "neutral": 27,
70
+ "optimism": 20,
71
+ "pride": 21,
72
+ "realization": 22,
73
+ "relief": 23,
74
+ "remorse": 24,
75
+ "sadness": 25,
76
+ "surprise": 26
77
+ },
78
+ "layer_norm_eps": 1e-12,
79
+ "max_position_embeddings": 512,
80
+ "model_type": "bert",
81
+ "n_heads": 12,
82
+ "n_layers": 6,
83
+ "num_attention_heads": 12,
84
+ "num_hidden_layers": 12,
85
+ "pad_token_id": 0,
86
+ "position_embedding_type": "absolute",
87
+ "qa_dropout": 0.1,
88
+ "seq_classif_dropout": 0.2,
89
+ "sinusoidal_pos_embds": false,
90
+ "tie_weights_": true,
91
+ "torch_dtype": "float32",
92
+ "transformers_version": "4.12.5",
93
+ "type_vocab_size": 2,
94
+ "use_cache": true,
95
+ "vocab_size": 30522
96
+ }