jintinghou commited on
Commit
0cb374a
·
verified ·
1 Parent(s): 314677c

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +30 -0
config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "DistilBertForSequenceClassification"
4
+ ],
5
+ "attention_dropout": 0.1,
6
+ "dim": 768,
7
+ "dropout": 0.1,
8
+ "finetuning_task": "text-classification",
9
+ "hidden_dim": 3072,
10
+ "id2label": {
11
+ "0": "NEGATIVE",
12
+ "1": "POSITIVE"
13
+ },
14
+ "initializer_range": 0.02,
15
+ "label2id": {
16
+ "NEGATIVE": 0,
17
+ "POSITIVE": 1
18
+ },
19
+ "max_position_embeddings": 512,
20
+ "model_type": "distilbert",
21
+ "n_heads": 12,
22
+ "n_layers": 6,
23
+ "pad_token_id": 0,
24
+ "qa_dropout": 0.1,
25
+ "seq_classif_dropout": 0.2,
26
+ "sinusoidal_pos_embds": false,
27
+ "tie_weights_": true,
28
+ "transformers_version": "4.21.0",
29
+ "vocab_size": 30522
30
+ }