aimarsg commited on
Commit
b25e902
1 Parent(s): c17d5dd

Training in progress, epoch 1

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,43 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "PlanTL-GOB-ES/bsc-bio-ehr-es-pharmaconer",
3
+ "architectures": [
4
+ "RobertaForTokenClassification"
5
+ ],
6
+ "attention_probs_dropout_prob": 0.1,
7
+ "bos_token_id": 0,
8
+ "classifier_dropout": null,
9
+ "eos_token_id": 2,
10
+ "finetuning_task": "ner",
11
+ "gradient_checkpointing": false,
12
+ "hidden_act": "gelu",
13
+ "hidden_dropout_prob": 0.1,
14
+ "hidden_size": 768,
15
+ "id2label": {
16
+ "0": "B-event",
17
+ "1": "I-rml",
18
+ "2": "B-rml",
19
+ "3": "I-event",
20
+ "4": "O"
21
+ },
22
+ "initializer_range": 0.02,
23
+ "intermediate_size": 3072,
24
+ "label2id": {
25
+ "B-event": 0,
26
+ "B-rml": 2,
27
+ "I-event": 3,
28
+ "I-rml": 1,
29
+ "O": 4
30
+ },
31
+ "layer_norm_eps": 1e-05,
32
+ "max_position_embeddings": 514,
33
+ "model_type": "roberta",
34
+ "num_attention_heads": 12,
35
+ "num_hidden_layers": 12,
36
+ "pad_token_id": 1,
37
+ "position_embedding_type": "absolute",
38
+ "torch_dtype": "float32",
39
+ "transformers_version": "4.27.3",
40
+ "type_vocab_size": 1,
41
+ "use_cache": true,
42
+ "vocab_size": 50262
43
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:538ce17fd3226e6a007bfd9edb6029d13be68e24dc986725e8ebf798003ec458
3
+ size 496299053
runs/Mar25_20-43-42_0b559cf3d59f/1679777032.3684797/events.out.tfevents.1679777032.0b559cf3d59f.200.13 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:56989bcbb13e97301689052a5bc61c927aa4e81c02273cd7f77d55c88a5bf69f
3
+ size 5739
runs/Mar25_20-43-42_0b559cf3d59f/events.out.tfevents.1679777032.0b559cf3d59f.200.12 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:654bb1d95c570f5af19cc6f8d7ddbf127fc6a961beb0ba223bcc961ef8c7165e
3
+ size 4136
runs/Mar25_20-44-12_0b559cf3d59f/1679777060.0412536/events.out.tfevents.1679777060.0b559cf3d59f.200.15 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26b459068ee61ea84c519bb218b4824668a7233035f099bb857341587f4e5b28
3
+ size 5739
runs/Mar25_20-44-12_0b559cf3d59f/events.out.tfevents.1679777060.0b559cf3d59f.200.14 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6a67f9d894886a17adae53f984194f75ae353f0628dc6b013732bac9ba2f4ad9
3
+ size 4136
runs/Mar25_20-44-32_0b559cf3d59f/1679777080.6190052/events.out.tfevents.1679777080.0b559cf3d59f.200.17 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bfe8e637393750ec725ede90c21ceb5660df030fe7b4e2aaf7af3cb025f1cf0c
3
+ size 5739
runs/Mar25_20-44-32_0b559cf3d59f/events.out.tfevents.1679777080.0b559cf3d59f.200.16 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9bf778110f4e49ca5702c79644e28cf5ae2b749562623538e3ad1fc303aac82e
3
+ size 4693
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,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "cls_token": "[CLS]",
3
+ "do_lower_case": false,
4
+ "mask_token": "[MASK]",
5
+ "model_max_length": 512,
6
+ "pad_token": "[PAD]",
7
+ "sep_token": "[SEP]",
8
+ "special_tokens_map_file": null,
9
+ "strip_accents": null,
10
+ "tokenize_chinese_chars": true,
11
+ "tokenizer_class": "DistilBertTokenizer",
12
+ "unk_token": "[UNK]"
13
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:09de0a90411dd302c46fb8be4c88fe28040a3a21761a057bc5ca57abc2359668
3
+ size 3515
vocab.txt ADDED
The diff for this file is too large to render. See raw diff