kamalkraj commited on
Commit
ce1a223
1 Parent(s): cf044a2

Upload config.json

Browse files
Files changed (1) hide show
  1. config.json +30 -0
config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "attention_probs_dropout_prob": 0.1,
3
+ "embedding_size": 768,
4
+ "hidden_act": "gelu",
5
+ "hidden_dropout_prob": 0.1,
6
+ "hidden_size": 768,
7
+ "initializer_range": 0.02,
8
+ "intermediate_size": 3072,
9
+ "layer_norm_eps": 1e-12,
10
+ "max_position_embeddings": 512,
11
+ "model_type": "electra",
12
+ "num_attention_heads": 12,
13
+ "num_hidden_layers": 12,
14
+ "pad_token_id": 0,
15
+ "type_vocab_size": 2,
16
+ "vocab_size": 30522,
17
+ "num_labels":4,
18
+ "id2label": {
19
+ "0": "I-INT",
20
+ "1": "I-OUT",
21
+ "2": "I-PAR",
22
+ "3": "O"
23
+ },
24
+ "label2id": {
25
+ "I-INT": 0,
26
+ "I-OUT": 1,
27
+ "I-PAR": 2,
28
+ "O": 3
29
+ }
30
+ }