Training in progress, epoch 1
Browse files- .gitattributes +1 -0
- config.json +92 -0
- model.safetensors +3 -0
- runs/Nov26_09-54-55_ae990c00c960/events.out.tfevents.1732614897.ae990c00c960.261.0 +3 -0
- sentencepiece.bpe.model +3 -0
- special_tokens_map.json +15 -0
- tokenizer.json +3 -0
- tokenizer_config.json +54 -0
- training_args.bin +3 -0
.gitattributes
CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
config.json
ADDED
@@ -0,0 +1,92 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "xlm-roberta-large",
|
3 |
+
"architectures": [
|
4 |
+
"XLMRobertaForTokenClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"bos_token_id": 0,
|
8 |
+
"classifier_dropout": null,
|
9 |
+
"eos_token_id": 2,
|
10 |
+
"hidden_act": "gelu",
|
11 |
+
"hidden_dropout_prob": 0.1,
|
12 |
+
"hidden_size": 1024,
|
13 |
+
"id2label": {
|
14 |
+
"0": "B_CANCER_CONCEPT",
|
15 |
+
"1": "B_CHEMOTHERAPY",
|
16 |
+
"2": "B_DATE",
|
17 |
+
"3": "B_DRUG",
|
18 |
+
"4": "B_FAMILY",
|
19 |
+
"5": "B_FREQ",
|
20 |
+
"6": "B_IMPLICIT_DATE",
|
21 |
+
"7": "B_INTERVAL",
|
22 |
+
"8": "B_METRIC",
|
23 |
+
"9": "B_OCURRENCE_EVENT",
|
24 |
+
"10": "B_QUANTITY",
|
25 |
+
"11": "B_RADIOTHERAPY",
|
26 |
+
"12": "B_SMOKER_STATUS",
|
27 |
+
"13": "B_STAGE",
|
28 |
+
"14": "B_SURGERY",
|
29 |
+
"15": "B_TNM",
|
30 |
+
"16": "I_CANCER_CONCEPT",
|
31 |
+
"17": "I_DATE",
|
32 |
+
"18": "I_DRUG",
|
33 |
+
"19": "I_FAMILY",
|
34 |
+
"20": "I_FREQ",
|
35 |
+
"21": "I_IMPLICIT_DATE",
|
36 |
+
"22": "I_INTERVAL",
|
37 |
+
"23": "I_METRIC",
|
38 |
+
"24": "I_OCURRENCE_EVENT",
|
39 |
+
"25": "I_SMOKER_STATUS",
|
40 |
+
"26": "I_STAGE",
|
41 |
+
"27": "I_SURGERY",
|
42 |
+
"28": "I_TNM",
|
43 |
+
"29": "O"
|
44 |
+
},
|
45 |
+
"initializer_range": 0.02,
|
46 |
+
"intermediate_size": 4096,
|
47 |
+
"label2id": {
|
48 |
+
"B_CANCER_CONCEPT": 0,
|
49 |
+
"B_CHEMOTHERAPY": 1,
|
50 |
+
"B_DATE": 2,
|
51 |
+
"B_DRUG": 3,
|
52 |
+
"B_FAMILY": 4,
|
53 |
+
"B_FREQ": 5,
|
54 |
+
"B_IMPLICIT_DATE": 6,
|
55 |
+
"B_INTERVAL": 7,
|
56 |
+
"B_METRIC": 8,
|
57 |
+
"B_OCURRENCE_EVENT": 9,
|
58 |
+
"B_QUANTITY": 10,
|
59 |
+
"B_RADIOTHERAPY": 11,
|
60 |
+
"B_SMOKER_STATUS": 12,
|
61 |
+
"B_STAGE": 13,
|
62 |
+
"B_SURGERY": 14,
|
63 |
+
"B_TNM": 15,
|
64 |
+
"I_CANCER_CONCEPT": 16,
|
65 |
+
"I_DATE": 17,
|
66 |
+
"I_DRUG": 18,
|
67 |
+
"I_FAMILY": 19,
|
68 |
+
"I_FREQ": 20,
|
69 |
+
"I_IMPLICIT_DATE": 21,
|
70 |
+
"I_INTERVAL": 22,
|
71 |
+
"I_METRIC": 23,
|
72 |
+
"I_OCURRENCE_EVENT": 24,
|
73 |
+
"I_SMOKER_STATUS": 25,
|
74 |
+
"I_STAGE": 26,
|
75 |
+
"I_SURGERY": 27,
|
76 |
+
"I_TNM": 28,
|
77 |
+
"O": 29
|
78 |
+
},
|
79 |
+
"layer_norm_eps": 1e-05,
|
80 |
+
"max_position_embeddings": 514,
|
81 |
+
"model_type": "xlm-roberta",
|
82 |
+
"num_attention_heads": 16,
|
83 |
+
"num_hidden_layers": 24,
|
84 |
+
"output_past": true,
|
85 |
+
"pad_token_id": 1,
|
86 |
+
"position_embedding_type": "absolute",
|
87 |
+
"torch_dtype": "float32",
|
88 |
+
"transformers_version": "4.46.2",
|
89 |
+
"type_vocab_size": 1,
|
90 |
+
"use_cache": true,
|
91 |
+
"vocab_size": 250002
|
92 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b099dfe68f9b114edd580fa74c117357aa519ae3254ddd4b979115ae5a59d5b1
|
3 |
+
size 2235534864
|
runs/Nov26_09-54-55_ae990c00c960/events.out.tfevents.1732614897.ae990c00c960.261.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a7c6eb820a6dfa486a6c95373472bbf90125a706a8866d213a8e075c0623604a
|
3 |
+
size 7815
|
sentencepiece.bpe.model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cfc8146abe2a0488e9e2a0c56de7952f7c11ab059eca145a0a727afce0db2865
|
3 |
+
size 5069051
|
special_tokens_map.json
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": "<s>",
|
3 |
+
"cls_token": "<s>",
|
4 |
+
"eos_token": "</s>",
|
5 |
+
"mask_token": {
|
6 |
+
"content": "<mask>",
|
7 |
+
"lstrip": true,
|
8 |
+
"normalized": false,
|
9 |
+
"rstrip": false,
|
10 |
+
"single_word": false
|
11 |
+
},
|
12 |
+
"pad_token": "<pad>",
|
13 |
+
"sep_token": "</s>",
|
14 |
+
"unk_token": "<unk>"
|
15 |
+
}
|
tokenizer.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3a56def25aa40facc030ea8b0b87f3688e4b3c39eb8b45d5702b3a1300fe2a20
|
3 |
+
size 17082734
|
tokenizer_config.json
ADDED
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"added_tokens_decoder": {
|
3 |
+
"0": {
|
4 |
+
"content": "<s>",
|
5 |
+
"lstrip": false,
|
6 |
+
"normalized": false,
|
7 |
+
"rstrip": false,
|
8 |
+
"single_word": false,
|
9 |
+
"special": true
|
10 |
+
},
|
11 |
+
"1": {
|
12 |
+
"content": "<pad>",
|
13 |
+
"lstrip": false,
|
14 |
+
"normalized": false,
|
15 |
+
"rstrip": false,
|
16 |
+
"single_word": false,
|
17 |
+
"special": true
|
18 |
+
},
|
19 |
+
"2": {
|
20 |
+
"content": "</s>",
|
21 |
+
"lstrip": false,
|
22 |
+
"normalized": false,
|
23 |
+
"rstrip": false,
|
24 |
+
"single_word": false,
|
25 |
+
"special": true
|
26 |
+
},
|
27 |
+
"3": {
|
28 |
+
"content": "<unk>",
|
29 |
+
"lstrip": false,
|
30 |
+
"normalized": false,
|
31 |
+
"rstrip": false,
|
32 |
+
"single_word": false,
|
33 |
+
"special": true
|
34 |
+
},
|
35 |
+
"250001": {
|
36 |
+
"content": "<mask>",
|
37 |
+
"lstrip": true,
|
38 |
+
"normalized": false,
|
39 |
+
"rstrip": false,
|
40 |
+
"single_word": false,
|
41 |
+
"special": true
|
42 |
+
}
|
43 |
+
},
|
44 |
+
"bos_token": "<s>",
|
45 |
+
"clean_up_tokenization_spaces": false,
|
46 |
+
"cls_token": "<s>",
|
47 |
+
"eos_token": "</s>",
|
48 |
+
"mask_token": "<mask>",
|
49 |
+
"model_max_length": 512,
|
50 |
+
"pad_token": "<pad>",
|
51 |
+
"sep_token": "</s>",
|
52 |
+
"tokenizer_class": "XLMRobertaTokenizer",
|
53 |
+
"unk_token": "<unk>"
|
54 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a3c4af7f3babd3985b540d8c55d7bf338b1a0b00cc26f374157812de2a511a6a
|
3 |
+
size 5368
|