system HF staff commited on
Commit
b40cd90
1 Parent(s): e36c180

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +46 -0
config.json ADDED
@@ -0,0 +1,46 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_num_labels": 9,
3
+ "architectures": [
4
+ "RobertaForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "bos_token_id": 0,
8
+ "eos_token_id": 2,
9
+ "eos_token_ids": null,
10
+ "hidden_act": "gelu",
11
+ "hidden_dropout_prob": 0.1,
12
+ "hidden_size": 768,
13
+ "id2label": {
14
+ "0": "B-LOC",
15
+ "1": "B-MISC",
16
+ "2": "B-ORG",
17
+ "3": "B-PER",
18
+ "4": "I-LOC",
19
+ "5": "I-MISC",
20
+ "6": "I-ORG",
21
+ "7": "I-PER",
22
+ "8": "O"
23
+ },
24
+ "initializer_range": 0.02,
25
+ "intermediate_size": 3072,
26
+ "label2id": {
27
+ "B-LOC": 0,
28
+ "B-MISC": 1,
29
+ "B-ORG": 2,
30
+ "B-PER": 3,
31
+ "I-LOC": 4,
32
+ "I-MISC": 5,
33
+ "I-ORG": 6,
34
+ "I-PER": 7,
35
+ "O": 8
36
+ },
37
+ "layer_norm_eps": 1e-05,
38
+ "max_position_embeddings": 514,
39
+ "model_type": "roberta",
40
+ "num_attention_heads": 12,
41
+ "num_hidden_layers": 12,
42
+ "output_past": true,
43
+ "pad_token_id": 1,
44
+ "type_vocab_size": 1,
45
+ "vocab_size": 50265
46
+ }