Tran Hung Phong
commited on
Commit
•
2d0e180
1
Parent(s):
6099dee
Training in progress, epoch 1
Browse files- .gitattributes +1 -0
- config.json +106 -0
- model.safetensors +3 -0
- runs/May27_17-01-19_lab2/events.out.tfevents.1716829280.lab2.168172.0 +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,106 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": "I-ORGAN",
|
15 |
+
"1": "B-PREVENTIVEMED",
|
16 |
+
"2": "B-DISEASESYMTOM",
|
17 |
+
"3": "B-FOODDRINK",
|
18 |
+
"4": "B-ORGANIZATION",
|
19 |
+
"5": "B-OCCUPATION",
|
20 |
+
"6": "B-DRUGCHEMICAL",
|
21 |
+
"7": "I-FOODDRINK",
|
22 |
+
"8": "I-DISEASESYMTOM",
|
23 |
+
"9": "I-UNITCALIBRATOR",
|
24 |
+
"10": "I-DATETIME",
|
25 |
+
"11": "I-DIAGNOSTICS",
|
26 |
+
"12": "B-TRANSPORTATION",
|
27 |
+
"13": "B-GENDER",
|
28 |
+
"14": "B-AGE",
|
29 |
+
"15": "B-DATETIME",
|
30 |
+
"16": "B-LOCATION",
|
31 |
+
"17": "B-TREATMENT",
|
32 |
+
"18": "I-DRUGCHEMICAL",
|
33 |
+
"19": "I-PREVENTIVEMED",
|
34 |
+
"20": "I-TREATMENT",
|
35 |
+
"21": "I-ORGANIZATION",
|
36 |
+
"22": "O",
|
37 |
+
"23": "B-UNITCALIBRATOR",
|
38 |
+
"24": "B-MEDDEVICETECHNIQUE",
|
39 |
+
"25": "I-OCCUPATION",
|
40 |
+
"26": "B-PERSONALCARE",
|
41 |
+
"27": "I-PERSONALCARE",
|
42 |
+
"28": "I-GENDER",
|
43 |
+
"29": "I-SURGERY",
|
44 |
+
"30": "I-AGE",
|
45 |
+
"31": "I-LOCATION",
|
46 |
+
"32": "B-DIAGNOSTICS",
|
47 |
+
"33": "I-MEDDEVICETECHNIQUE",
|
48 |
+
"34": "B-ORGAN",
|
49 |
+
"35": "B-SURGERY",
|
50 |
+
"36": "I-TRANSPORTATION"
|
51 |
+
},
|
52 |
+
"initializer_range": 0.02,
|
53 |
+
"intermediate_size": 4096,
|
54 |
+
"label2id": {
|
55 |
+
"B-AGE": 14,
|
56 |
+
"B-DATETIME": 15,
|
57 |
+
"B-DIAGNOSTICS": 32,
|
58 |
+
"B-DISEASESYMTOM": 2,
|
59 |
+
"B-DRUGCHEMICAL": 6,
|
60 |
+
"B-FOODDRINK": 3,
|
61 |
+
"B-GENDER": 13,
|
62 |
+
"B-LOCATION": 16,
|
63 |
+
"B-MEDDEVICETECHNIQUE": 24,
|
64 |
+
"B-OCCUPATION": 5,
|
65 |
+
"B-ORGAN": 34,
|
66 |
+
"B-ORGANIZATION": 4,
|
67 |
+
"B-PERSONALCARE": 26,
|
68 |
+
"B-PREVENTIVEMED": 1,
|
69 |
+
"B-SURGERY": 35,
|
70 |
+
"B-TRANSPORTATION": 12,
|
71 |
+
"B-TREATMENT": 17,
|
72 |
+
"B-UNITCALIBRATOR": 23,
|
73 |
+
"I-AGE": 30,
|
74 |
+
"I-DATETIME": 10,
|
75 |
+
"I-DIAGNOSTICS": 11,
|
76 |
+
"I-DISEASESYMTOM": 8,
|
77 |
+
"I-DRUGCHEMICAL": 18,
|
78 |
+
"I-FOODDRINK": 7,
|
79 |
+
"I-GENDER": 28,
|
80 |
+
"I-LOCATION": 31,
|
81 |
+
"I-MEDDEVICETECHNIQUE": 33,
|
82 |
+
"I-OCCUPATION": 25,
|
83 |
+
"I-ORGAN": 0,
|
84 |
+
"I-ORGANIZATION": 21,
|
85 |
+
"I-PERSONALCARE": 27,
|
86 |
+
"I-PREVENTIVEMED": 19,
|
87 |
+
"I-SURGERY": 29,
|
88 |
+
"I-TRANSPORTATION": 36,
|
89 |
+
"I-TREATMENT": 20,
|
90 |
+
"I-UNITCALIBRATOR": 9,
|
91 |
+
"O": 22
|
92 |
+
},
|
93 |
+
"layer_norm_eps": 1e-05,
|
94 |
+
"max_position_embeddings": 514,
|
95 |
+
"model_type": "xlm-roberta",
|
96 |
+
"num_attention_heads": 16,
|
97 |
+
"num_hidden_layers": 24,
|
98 |
+
"output_past": true,
|
99 |
+
"pad_token_id": 1,
|
100 |
+
"position_embedding_type": "absolute",
|
101 |
+
"torch_dtype": "float32",
|
102 |
+
"transformers_version": "4.41.1",
|
103 |
+
"type_vocab_size": 1,
|
104 |
+
"use_cache": true,
|
105 |
+
"vocab_size": 250002
|
106 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:a7a8219eb1ea3070513577bc7e94ebbae921d403eb3fa41a1c8e1a20613d59b2
|
3 |
+
size 2235563564
|
runs/May27_17-01-19_lab2/events.out.tfevents.1716829280.lab2.168172.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0bff19cb27ba8dfc834123f20197da3cd9b1e676a621e42810733caa4f0a23fe
|
3 |
+
size 7809
|
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:8373f9cd3d27591e1924426bcc1c8799bc5a9affc4fc857982c5d66668dd1f41
|
3 |
+
size 17082832
|
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": true,
|
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:5e3fa3a4b6b040847ca2705193033808acad9294833d7ef73c25607de7d155c2
|
3 |
+
size 5112
|