system HF staff commited on
Commit
e92e4db
1 Parent(s): ff7438e

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +47 -0
config.json ADDED
@@ -0,0 +1,47 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation": "gelu",
3
+ "architectures": [
4
+ "DistilBertForTokenClassification"
5
+ ],
6
+ "attention_dropout": 0.1,
7
+ "dim": 768,
8
+ "dropout": 0.1,
9
+ "hidden_dim": 3072,
10
+ "id2label": {
11
+ "0": "CARDINAL",
12
+ "1": "GPE",
13
+ "2": "Phone",
14
+ "3": "Skills",
15
+ "4": "ORG",
16
+ "5": "EducationDegree",
17
+ "6": "ExperianceYears",
18
+ "7": "DATE",
19
+ "8": "PERSON",
20
+ "9": "Designation",
21
+ "10": "O"
22
+ },
23
+ "initializer_range": 0.02,
24
+ "label2id": {
25
+ "CARDINAL": 0,
26
+ "DATE": 7,
27
+ "Designation": 9,
28
+ "EducationDegree": 5,
29
+ "ExperianceYears": 6,
30
+ "GPE": 1,
31
+ "O": 10,
32
+ "ORG": 4,
33
+ "PERSON": 8,
34
+ "Phone": 2,
35
+ "Skills": 3
36
+ },
37
+ "max_position_embeddings": 512,
38
+ "model_type": "distilbert",
39
+ "n_heads": 12,
40
+ "n_layers": 6,
41
+ "pad_token_id": 0,
42
+ "qa_dropout": 0.1,
43
+ "seq_classif_dropout": 0.2,
44
+ "sinusoidal_pos_embds": false,
45
+ "tie_weights_": true,
46
+ "vocab_size": 30522
47
+ }