sumitrsch commited on
Commit
4ace4b4
1 Parent(s): ab6c06f

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +58 -0
config.json ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "xlm-roberta-large",
3
+ "architectures": [
4
+ "XLMRobertaForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "bos_token_id": 0,
8
+ "classifier_dropout": null,
9
+ "eos_token_id": 2,
10
+ "hidden_act": "gelu",
11
+ "hidden_dropout_prob": 0.1,
12
+ "hidden_size": 1024,
13
+ "id2label": {
14
+ "0": "O",
15
+ "1": "B-CW",
16
+ "2": "B-PROD",
17
+ "3": "B-PER",
18
+ "4": "I-PER",
19
+ "5": "I-PROD",
20
+ "6": "B-LOC",
21
+ "7": "B-CORP",
22
+ "8": "I-CORP",
23
+ "9": "B-GRP",
24
+ "10": "I-GRP",
25
+ "11": "I-CW",
26
+ "12": "I-LOC"
27
+ },
28
+ "initializer_range": 0.02,
29
+ "intermediate_size": 4096,
30
+ "label2id": {
31
+ "B-CORP": 7,
32
+ "B-CW": 1,
33
+ "B-GRP": 9,
34
+ "B-LOC": 6,
35
+ "B-PER": 3,
36
+ "B-PROD": 2,
37
+ "I-CORP": 8,
38
+ "I-CW": 11,
39
+ "I-GRP": 10,
40
+ "I-LOC": 12,
41
+ "I-PER": 4,
42
+ "I-PROD": 5,
43
+ "O": 0
44
+ },
45
+ "layer_norm_eps": 1e-05,
46
+ "max_position_embeddings": 514,
47
+ "model_type": "xlm-roberta",
48
+ "num_attention_heads": 16,
49
+ "num_hidden_layers": 24,
50
+ "output_past": true,
51
+ "pad_token_id": 1,
52
+ "position_embedding_type": "absolute",
53
+ "torch_dtype": "float32",
54
+ "transformers_version": "4.18.0",
55
+ "type_vocab_size": 1,
56
+ "use_cache": true,
57
+ "vocab_size": 250002
58
+ }