UMCU commited on
Commit
c5b6771
·
verified ·
1 Parent(s): a1a842d

Upload config.json with huggingface_hub

Browse files
Files changed (1) hide show
  1. config.json +49 -0
config.json ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_cross_attention": false,
3
+ "architectures": [
4
+ "TokenClassificationModel"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "auto_map": {
8
+ "AutoModelForTokenClassification": "modeling.TokenClassificationModel"
9
+ },
10
+ "backbone_model_name": "DT4H/CardioBERTa.sv",
11
+ "bos_token_id": null,
12
+ "class_weights": null,
13
+ "classifier_dropout": 0.1,
14
+ "classifier_hidden_layers": null,
15
+ "custom_model_type": "TokenClassificationModel",
16
+ "dtype": "bfloat16",
17
+ "eos_token_id": null,
18
+ "gradient_checkpointing": false,
19
+ "hidden_act": "gelu",
20
+ "hidden_dropout_prob": 0.1,
21
+ "hidden_size": 768,
22
+ "id2label": {
23
+ "0": "O",
24
+ "1": "B-DISEASE",
25
+ "2": "I-DISEASE"
26
+ },
27
+ "initializer_range": 0.02,
28
+ "intermediate_size": 3072,
29
+ "is_decoder": false,
30
+ "label2id": {
31
+ "B-DISEASE": 1,
32
+ "I-DISEASE": 2,
33
+ "O": 0
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
+ "output_past": true,
41
+ "pad_token_id": 0,
42
+ "position_embedding_type": "absolute",
43
+ "requires_trust_remote_code": true,
44
+ "tie_word_embeddings": true,
45
+ "transformers_version": "5.3.0",
46
+ "type_vocab_size": 2,
47
+ "use_cache": true,
48
+ "vocab_size": 50325
49
+ }