mma commited on
Commit
8519e63
1 Parent(s): 2927321

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +56 -1
config.json CHANGED
@@ -1,3 +1,58 @@
1
  {
2
- "transformers_version": "4.4.2"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  }
1
  {
2
+ "_name_or_path": "HooshvareLab/bert-base-parsbert-uncased",
3
+ "architectures": [
4
+ "BertForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "gradient_checkpointing": false,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.1,
10
+ "hidden_size": 768,
11
+ "id2label": {
12
+ "0": "B_DAT",
13
+ "1": "B_LOC",
14
+ "2": "B_MON",
15
+ "3": "B_ORG",
16
+ "4": "B_PCT",
17
+ "5": "B_PER",
18
+ "6": "B_TIM",
19
+ "7": "I_DAT",
20
+ "8": "I_LOC",
21
+ "9": "I_MON",
22
+ "10": "I_ORG",
23
+ "11": "I_PCT",
24
+ "12": "I_PER",
25
+ "13": "I_TIM",
26
+ "14": "O"
27
+ },
28
+ "initializer_range": 0.02,
29
+ "intermediate_size": 3072,
30
+ "label2id": {
31
+ "B_DAT": 0,
32
+ "B_LOC": 1,
33
+ "B_MON": 2,
34
+ "B_ORG": 3,
35
+ "B_PCT": 4,
36
+ "B_PER": 5,
37
+ "B_TIM": 6,
38
+ "I_DAT": 7,
39
+ "I_LOC": 8,
40
+ "I_MON": 9,
41
+ "I_ORG": 10,
42
+ "I_PCT": 11,
43
+ "I_PER": 12,
44
+ "I_TIM": 13,
45
+ "O": 14
46
+ },
47
+ "layer_norm_eps": 1e-12,
48
+ "max_position_embeddings": 512,
49
+ "model_type": "bert",
50
+ "num_attention_heads": 12,
51
+ "num_hidden_layers": 12,
52
+ "pad_token_id": 0,
53
+ "position_embedding_type": "absolute",
54
+ "transformers_version": "4.6.0.dev0",
55
+ "type_vocab_size": 2,
56
+ "use_cache": true,
57
+ "vocab_size": 100000
58
  }