katrjohn commited on
Commit
f2eaa4c
·
verified ·
1 Parent(s): 55ab08e

update config: label counts (+auto_map)

Browse files
Files changed (1) hide show
  1. config.json +40 -0
config.json ADDED
@@ -0,0 +1,40 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "activation": "gelu",
3
+ "architectures": [
4
+ "DistilGreekNewsBert"
5
+ ],
6
+ "attention_dropout": 0.1,
7
+ "attention_probs_dropout_prob": 0.1,
8
+ "auto_map": {
9
+ "AutoConfig": "configuration_greek_news_bert.DistilGreekNewsBertConfig",
10
+ "AutoModel": "modeling_greek_news_bert.DistilGreekNewsBert"
11
+ },
12
+ "classifier_dropout": null,
13
+ "dim": 768,
14
+ "dropout": 0.1,
15
+ "hidden_act": "gelu",
16
+ "hidden_dim": 3072,
17
+ "hidden_dropout_prob": 0.1,
18
+ "hidden_size": 768,
19
+ "initializer_range": 0.02,
20
+ "intermediate_size": 3072,
21
+ "layer_norm_eps": 1e-12,
22
+ "max_position_embeddings": 512,
23
+ "model_type": "bert",
24
+ "n_heads": 12,
25
+ "n_layers": 6,
26
+ "num_attention_heads": 12,
27
+ "num_hidden_layers": 12,
28
+ "num_labels_class": 19,
29
+ "num_labels_ner": 32,
30
+ "pad_token_id": 0,
31
+ "position_embedding_type": "absolute",
32
+ "qa_dropout": 0.1,
33
+ "seq_classif_dropout": 0.2,
34
+ "sinusoidal_pos_embds": true,
35
+ "torch_dtype": "float32",
36
+ "transformers_version": "4.53.0.dev0",
37
+ "type_vocab_size": 2,
38
+ "use_cache": true,
39
+ "vocab_size": 35000
40
+ }