Shoriful025 commited on
Commit
1a88f1a
·
verified ·
1 Parent(s): 7efb7bd

Create config.json

Browse files
Files changed (1) hide show
  1. config.json +51 -0
config.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "SciTopicSentimentClassifier",
3
+ "architectures": ["DistilBertForSequenceClassification"],
4
+ "model_type": "distilbert",
5
+ "finetuning_task": "multi_label_classification",
6
+ "num_labels": 12,
7
+ "id2label": {
8
+ "0": "Deep Learning/AI",
9
+ "1": "Quantum Computing",
10
+ "2": "Environmental Science",
11
+ "3": "Neuroscience",
12
+ "4": "Materials Science/Chemistry",
13
+ "5": "Finance/Econometrics",
14
+ "6": "Cybersecurity/Networking",
15
+ "7": "Renewable Energy",
16
+ "8": "Biomedical Engineering",
17
+ "9": "Control Systems/Robotics",
18
+ "10": "High-Positive-Sentiment",
19
+ "11": "Low-Negative-Sentiment"
20
+ },
21
+ "label2id": {
22
+ "Deep Learning/AI": 0,
23
+ "Quantum Computing": 1,
24
+ "Environmental Science": 2,
25
+ "Neuroscience": 3,
26
+ "Materials Science/Chemistry": 4,
27
+ "Finance/Econometrics": 5,
28
+ "Cybersecurity/Networking": 6,
29
+ "Renewable Energy": 7,
30
+ "Biomedical Engineering": 8,
31
+ "Control Systems/Robotics": 9,
32
+ "High-Positive-Sentiment": 10,
33
+ "Low-Negative-Sentiment": 11
34
+ },
35
+ "hidden_act": "gelu",
36
+ "hidden_dropout_prob": 0.1,
37
+ "initializer_range": 0.02,
38
+ "max_position_embeddings": 512,
39
+ "sinusoidal_pos_embds": false,
40
+ "vocab_size": 30522,
41
+ "dim": 768,
42
+ "n_heads": 12,
43
+ "n_layers": 6,
44
+ "pad_token_id": 0,
45
+ "qa_dropout": 0.1,
46
+ "seq_classif_dropout": 0.2,
47
+ "tie_weights_": true,
48
+ "output_hidden_states": false,
49
+ "output_attentions": false,
50
+ "torch_dtype": "float32"
51
+ }