magistermilitum commited on
Commit
186f1cc
1 Parent(s): 464667f

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +39 -0
config.json ADDED
@@ -0,0 +1,39 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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": "O",
14
+ "1": "B-LOC",
15
+ "2": "B-PERS",
16
+ "3": "I-PERS",
17
+ "4": "L-PERS",
18
+ "5": "I-LOC"
19
+ },
20
+ "initializer_range": 0.02,
21
+ "intermediate_size": 4096,
22
+ "label2id": {
23
+ "B-LOC": 1,
24
+ "B-PERS": 2,
25
+ "I-LOC": 5,
26
+ "I-PERS": 3,
27
+ "L-PERS": 4,
28
+ "O": 0
29
+ },
30
+ "layer_norm_eps": 1e-05,
31
+ "max_position_embeddings": 514,
32
+ "model_type": "xlm-roberta",
33
+ "num_attention_heads": 16,
34
+ "num_hidden_layers": 24,
35
+ "output_past": true,
36
+ "pad_token_id": 1,
37
+ "type_vocab_size": 1,
38
+ "vocab_size": 250002
39
+ }