system HF staff commited on
Commit
bee8cb6
1 Parent(s): 5a7a6b7

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +62 -0
config.json ADDED
@@ -0,0 +1,62 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "XLMRobertaForTokenClassification"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "bos_token_id": 0,
7
+ "eos_token_id": 2,
8
+ "gradient_checkpointing": false,
9
+ "hidden_act": "gelu",
10
+ "hidden_dropout_prob": 0.1,
11
+ "hidden_size": 1024,
12
+ "id2label": {
13
+ "0": "B-Date",
14
+ "1": "B-Location",
15
+ "2": "B-Miscellaneous",
16
+ "3": "B-Money",
17
+ "4": "B-Organization",
18
+ "5": "B-Percent",
19
+ "6": "B-Person",
20
+ "7": "B-Time",
21
+ "8": "I-Date",
22
+ "9": "I-Location",
23
+ "10": "I-Miscellaneous",
24
+ "11": "I-Money",
25
+ "12": "I-Organization",
26
+ "13": "I-Percent",
27
+ "14": "I-Person",
28
+ "15": "I-Time",
29
+ "16": "O"
30
+ },
31
+ "initializer_range": 0.02,
32
+ "intermediate_size": 4096,
33
+ "label2id": {
34
+ "B-Date": 0,
35
+ "B-Location": 1,
36
+ "B-Miscellaneous": 2,
37
+ "B-Money": 3,
38
+ "B-Organization": 4,
39
+ "B-Percent": 5,
40
+ "B-Person": 6,
41
+ "B-Time": 7,
42
+ "I-Date": 8,
43
+ "I-Location": 9,
44
+ "I-Miscellaneous": 10,
45
+ "I-Money": 11,
46
+ "I-Organization": 12,
47
+ "I-Percent": 13,
48
+ "I-Person": 14,
49
+ "I-Time": 15,
50
+ "O": 16
51
+ },
52
+ "layer_norm_eps": 1e-05,
53
+ "max_position_embeddings": 514,
54
+ "model_type": "xlm-roberta",
55
+ "num_attention_heads": 16,
56
+ "num_hidden_layers": 24,
57
+ "output_past": true,
58
+ "pad_token_id": 1,
59
+ "total_flos": 247275089028389376,
60
+ "type_vocab_size": 1,
61
+ "vocab_size": 250002
62
+ }