rayschwartz commited on
Commit
00f4c14
·
1 Parent(s): 2f58a17

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +39 -0
config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "myclassification",
3
+ "_num_labels": 4,
4
+ "activation": "gelu",
5
+ "architectures": [
6
+ "DistilBertForSequenceClassification"
7
+ ],
8
+ "attention_dropout": 0.1,
9
+ "dim": 768,
10
+ "dropout": 0.1,
11
+ "hidden_dim": 3072,
12
+ "id2label": {
13
+ "0": "Negative",
14
+ "1": "Positive",
15
+ "2": "Price",
16
+ "3": "WhoIsThis"
17
+ },
18
+ "initializer_range": 0.02,
19
+ "label2id": {
20
+ "Negative": 0,
21
+ "Positive": 1,
22
+ "Price": 2,
23
+ "WhoIsThis": 3
24
+ },
25
+ "max_length": 64,
26
+ "max_position_embeddings": 512,
27
+ "model_type": "distilbert",
28
+ "n_heads": 12,
29
+ "n_layers": 6,
30
+ "pad_token_id": 0,
31
+ "padding": "max_length",
32
+ "problem_type": "single_label_classification",
33
+ "qa_dropout": 0.1,
34
+ "seq_classif_dropout": 0.2,
35
+ "sinusoidal_pos_embds": false,
36
+ "tie_weights_": true,
37
+ "transformers_version": "4.8.0",
38
+ "vocab_size": 30522
39
+ }