Commit
•
01fc07b
1
Parent(s):
57d68d4
Training in progress, epoch 1
Browse files- .gitignore +1 -0
- config.json +99 -0
- pytorch_model.bin +3 -0
- runs/Aug03_15-46-37_6d74df294123/1659541605.843313/events.out.tfevents.1659541605.6d74df294123.1616.1 +3 -0
- runs/Aug03_15-46-37_6d74df294123/events.out.tfevents.1659541605.6d74df294123.1616.0 +3 -0
- special_tokens_map.json +7 -0
- tokenizer.json +0 -0
- tokenizer_config.json +14 -0
- training_args.bin +3 -0
- vocab.txt +0 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
config.json
ADDED
@@ -0,0 +1,99 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "distilbert-base-cased",
|
3 |
+
"activation": "gelu",
|
4 |
+
"architectures": [
|
5 |
+
"DistilBertForTokenClassification"
|
6 |
+
],
|
7 |
+
"attention_dropout": 0.1,
|
8 |
+
"dim": 768,
|
9 |
+
"dropout": 0.1,
|
10 |
+
"hidden_dim": 3072,
|
11 |
+
"id2label": {
|
12 |
+
"0": "B-FOOD",
|
13 |
+
"1": "I-PART",
|
14 |
+
"2": "U-UNIT",
|
15 |
+
"3": "U-FOOD",
|
16 |
+
"4": "L-TASTE",
|
17 |
+
"5": "B-PART",
|
18 |
+
"6": "I-PROCESS",
|
19 |
+
"7": "U-QUANTITY",
|
20 |
+
"8": "L-UNIT",
|
21 |
+
"9": "U-PHYSICAL_QUALITY",
|
22 |
+
"10": "B-PHYSICAL_QUALITY",
|
23 |
+
"11": "I-QUANTITY",
|
24 |
+
"12": "L-QUANTITY",
|
25 |
+
"13": "U-COLOR",
|
26 |
+
"14": "U-PART",
|
27 |
+
"15": "U-PROCESS",
|
28 |
+
"16": "O",
|
29 |
+
"17": "L-PART",
|
30 |
+
"18": "B-QUANTITY",
|
31 |
+
"19": "L-PURPOSE",
|
32 |
+
"20": "B-PROCESS",
|
33 |
+
"21": "I-UNIT",
|
34 |
+
"22": "B-PURPOSE",
|
35 |
+
"23": "L-PROCESS",
|
36 |
+
"24": "L-FOOD",
|
37 |
+
"25": "L-COLOR",
|
38 |
+
"26": "I-TASTE",
|
39 |
+
"27": "I-FOOD",
|
40 |
+
"28": "I-PHYSICAL_QUALITY",
|
41 |
+
"29": "B-UNIT",
|
42 |
+
"30": "L-PHYSICAL_QUALITY",
|
43 |
+
"31": "B-COLOR",
|
44 |
+
"32": "U-TASTE",
|
45 |
+
"33": "I-PURPOSE",
|
46 |
+
"34": "B-TASTE"
|
47 |
+
},
|
48 |
+
"initializer_range": 0.02,
|
49 |
+
"label2id": {
|
50 |
+
"B-COLOR": 31,
|
51 |
+
"B-FOOD": 0,
|
52 |
+
"B-PART": 5,
|
53 |
+
"B-PHYSICAL_QUALITY": 10,
|
54 |
+
"B-PROCESS": 20,
|
55 |
+
"B-PURPOSE": 22,
|
56 |
+
"B-QUANTITY": 18,
|
57 |
+
"B-TASTE": 34,
|
58 |
+
"B-UNIT": 29,
|
59 |
+
"I-FOOD": 27,
|
60 |
+
"I-PART": 1,
|
61 |
+
"I-PHYSICAL_QUALITY": 28,
|
62 |
+
"I-PROCESS": 6,
|
63 |
+
"I-PURPOSE": 33,
|
64 |
+
"I-QUANTITY": 11,
|
65 |
+
"I-TASTE": 26,
|
66 |
+
"I-UNIT": 21,
|
67 |
+
"L-COLOR": 25,
|
68 |
+
"L-FOOD": 24,
|
69 |
+
"L-PART": 17,
|
70 |
+
"L-PHYSICAL_QUALITY": 30,
|
71 |
+
"L-PROCESS": 23,
|
72 |
+
"L-PURPOSE": 19,
|
73 |
+
"L-QUANTITY": 12,
|
74 |
+
"L-TASTE": 4,
|
75 |
+
"L-UNIT": 8,
|
76 |
+
"O": 16,
|
77 |
+
"U-COLOR": 13,
|
78 |
+
"U-FOOD": 3,
|
79 |
+
"U-PART": 14,
|
80 |
+
"U-PHYSICAL_QUALITY": 9,
|
81 |
+
"U-PROCESS": 15,
|
82 |
+
"U-QUANTITY": 7,
|
83 |
+
"U-TASTE": 32,
|
84 |
+
"U-UNIT": 2
|
85 |
+
},
|
86 |
+
"max_position_embeddings": 512,
|
87 |
+
"model_type": "distilbert",
|
88 |
+
"n_heads": 12,
|
89 |
+
"n_layers": 6,
|
90 |
+
"output_past": true,
|
91 |
+
"pad_token_id": 0,
|
92 |
+
"qa_dropout": 0.1,
|
93 |
+
"seq_classif_dropout": 0.2,
|
94 |
+
"sinusoidal_pos_embds": false,
|
95 |
+
"tie_weights_": true,
|
96 |
+
"torch_dtype": "float32",
|
97 |
+
"transformers_version": "4.21.0",
|
98 |
+
"vocab_size": 28996
|
99 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ee4da6edb7103c00d1391ac769ea03ed92175c9d17e77e4e5e80043eba5c51ea
|
3 |
+
size 260904949
|
runs/Aug03_15-46-37_6d74df294123/1659541605.843313/events.out.tfevents.1659541605.6d74df294123.1616.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8a0aeb1fad43102e17629341a586f3ec866b2e6dcb6ea75f1717d438b6306b06
|
3 |
+
size 5498
|
runs/Aug03_15-46-37_6d74df294123/events.out.tfevents.1659541605.6d74df294123.1616.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:959d2410ad0e4307b2e579c5aefab19a8fccb21fd3cc1cbbb82263eba0cfe173
|
3 |
+
size 5580
|
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,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"cls_token": "[CLS]",
|
3 |
+
"do_lower_case": false,
|
4 |
+
"mask_token": "[MASK]",
|
5 |
+
"model_max_length": 512,
|
6 |
+
"name_or_path": "distilbert-base-cased",
|
7 |
+
"pad_token": "[PAD]",
|
8 |
+
"sep_token": "[SEP]",
|
9 |
+
"special_tokens_map_file": null,
|
10 |
+
"strip_accents": null,
|
11 |
+
"tokenize_chinese_chars": true,
|
12 |
+
"tokenizer_class": "DistilBertTokenizer",
|
13 |
+
"unk_token": "[UNK]"
|
14 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:66f6526d72880d996feecd9144d0018ffbbeec679d0511e124791453ee7ff7ff
|
3 |
+
size 3439
|
vocab.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|