pzalavad commited on
Commit
473c5e1
1 Parent(s): d326e7a

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +43 -0
config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "Seethal/sentiment_analysis_generic_dataset",
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": "anger",
13
+ "1": "love",
14
+ "2": "neutral",
15
+ "3": "positive",
16
+ "4": "sadness",
17
+ "5": "surprise",
18
+ "6": "worry"
19
+ },
20
+ "initializer_range": 0.02,
21
+ "label2id": {
22
+ "anger": 0,
23
+ "love": 1,
24
+ "neutral": 2,
25
+ "positive": 3,
26
+ "sadness": 4,
27
+ "surprise": 5,
28
+ "worry": 6
29
+ },
30
+ "max_position_embeddings": 512,
31
+ "model_type": "distilbert",
32
+ "n_heads": 12,
33
+ "n_layers": 6,
34
+ "pad_token_id": 0,
35
+ "problem_type": "single_label_classification",
36
+ "qa_dropout": 0.1,
37
+ "seq_classif_dropout": 0.2,
38
+ "sinusoidal_pos_embds": false,
39
+ "tie_weights_": true,
40
+ "torch_dtype": "float32",
41
+ "transformers_version": "4.30.2",
42
+ "vocab_size": 30522
43
+ }