pabRomero commited on
Commit
8450046
1 Parent(s): fe34a2f

Training in progress, epoch 0

Browse files
config.json ADDED
@@ -0,0 +1,67 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "microsoft/BiomedNLP-BiomedBERT-base-uncased-abstract-fulltext",
3
+ "architectures": [
4
+ "BertForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "classifier_dropout": null,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.1,
10
+ "hidden_size": 768,
11
+ "id2label": {
12
+ "0": "O",
13
+ "1": "B-Drug",
14
+ "2": "I-Drug",
15
+ "3": "B-Reason",
16
+ "4": "I-Reason",
17
+ "5": "B-Route",
18
+ "6": "I-Route",
19
+ "7": "B-Strength",
20
+ "8": "I-Strength",
21
+ "9": "B-Form",
22
+ "10": "I-Form",
23
+ "11": "B-Dosage",
24
+ "12": "I-Dosage",
25
+ "13": "B-Frequency",
26
+ "14": "I-Frequency",
27
+ "15": "B-Duration",
28
+ "16": "I-Duration",
29
+ "17": "B-ADE",
30
+ "18": "I-ADE"
31
+ },
32
+ "initializer_range": 0.02,
33
+ "intermediate_size": 3072,
34
+ "label2id": {
35
+ "B-ADE": 17,
36
+ "B-Dosage": 11,
37
+ "B-Drug": 1,
38
+ "B-Duration": 15,
39
+ "B-Form": 9,
40
+ "B-Frequency": 13,
41
+ "B-Reason": 3,
42
+ "B-Route": 5,
43
+ "B-Strength": 7,
44
+ "I-ADE": 18,
45
+ "I-Dosage": 12,
46
+ "I-Drug": 2,
47
+ "I-Duration": 16,
48
+ "I-Form": 10,
49
+ "I-Frequency": 14,
50
+ "I-Reason": 4,
51
+ "I-Route": 6,
52
+ "I-Strength": 8,
53
+ "O": 0
54
+ },
55
+ "layer_norm_eps": 1e-12,
56
+ "max_position_embeddings": 512,
57
+ "model_type": "bert",
58
+ "num_attention_heads": 12,
59
+ "num_hidden_layers": 12,
60
+ "pad_token_id": 0,
61
+ "position_embedding_type": "absolute",
62
+ "torch_dtype": "float32",
63
+ "transformers_version": "4.44.0",
64
+ "type_vocab_size": 2,
65
+ "use_cache": true,
66
+ "vocab_size": 30522
67
+ }
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7bd13c0fdfedab308b73d9b82eeb8f1f25748c70fb863b6b9a079dee1eee66e6
3
+ size 435648380
special_tokens_map.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "mask_token": "[MASK]",
4
+ "pad_token": "[PAD]",
5
+ "sep_token": "[SEP]",
6
+ "unk_token": "[UNK]"
7
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,58 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": true,
3
+ "added_tokens_decoder": {
4
+ "0": {
5
+ "content": "[PAD]",
6
+ "lstrip": false,
7
+ "normalized": false,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ },
12
+ "1": {
13
+ "content": "[UNK]",
14
+ "lstrip": false,
15
+ "normalized": false,
16
+ "rstrip": false,
17
+ "single_word": false,
18
+ "special": true
19
+ },
20
+ "2": {
21
+ "content": "[CLS]",
22
+ "lstrip": false,
23
+ "normalized": false,
24
+ "rstrip": false,
25
+ "single_word": false,
26
+ "special": true
27
+ },
28
+ "3": {
29
+ "content": "[SEP]",
30
+ "lstrip": false,
31
+ "normalized": false,
32
+ "rstrip": false,
33
+ "single_word": false,
34
+ "special": true
35
+ },
36
+ "4": {
37
+ "content": "[MASK]",
38
+ "lstrip": false,
39
+ "normalized": false,
40
+ "rstrip": false,
41
+ "single_word": false,
42
+ "special": true
43
+ }
44
+ },
45
+ "clean_up_tokenization_spaces": true,
46
+ "cls_token": "[CLS]",
47
+ "do_basic_tokenize": true,
48
+ "do_lower_case": true,
49
+ "mask_token": "[MASK]",
50
+ "model_max_length": 1000000000000000019884624838656,
51
+ "never_split": null,
52
+ "pad_token": "[PAD]",
53
+ "sep_token": "[SEP]",
54
+ "strip_accents": null,
55
+ "tokenize_chinese_chars": true,
56
+ "tokenizer_class": "BertTokenizer",
57
+ "unk_token": "[UNK]"
58
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1254a5c11f48b1d9953431048e496fc0e322bdde4639694df66cc7a7feb94b1d
3
+ size 5176
vocab.txt ADDED
The diff for this file is too large to render. See raw diff