system HF staff commited on
Commit
c49aa1d
1 Parent(s): 024c9b7

Update config.json

Browse files
Files changed (1) hide show
  1. config.json +48 -0
config.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "BertForTokenClassification"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "directionality": "bidi",
7
+ "gradient_checkpointing": false,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.1,
10
+ "hidden_size": 768,
11
+ "id2label": {
12
+ "0": "O",
13
+ "1": "ambiguous",
14
+ "2": "en",
15
+ "3": "fw",
16
+ "4": "hin",
17
+ "5": "mixed",
18
+ "6": "ne",
19
+ "7": "other",
20
+ "8": "unk"
21
+ },
22
+ "initializer_range": 0.02,
23
+ "intermediate_size": 3072,
24
+ "label2id": {
25
+ "O": 0,
26
+ "ambiguous": 1,
27
+ "en": 2,
28
+ "fw": 3,
29
+ "hin": 4,
30
+ "mixed": 5,
31
+ "ne": 6,
32
+ "other": 7,
33
+ "unk": 8
34
+ },
35
+ "layer_norm_eps": 1e-12,
36
+ "max_position_embeddings": 512,
37
+ "model_type": "bert",
38
+ "num_attention_heads": 12,
39
+ "num_hidden_layers": 12,
40
+ "pad_token_id": 0,
41
+ "pooler_fc_size": 768,
42
+ "pooler_num_attention_heads": 12,
43
+ "pooler_num_fc_layers": 3,
44
+ "pooler_size_per_head": 128,
45
+ "pooler_type": "first_token_transform",
46
+ "type_vocab_size": 2,
47
+ "vocab_size": 119547
48
+ }