Commit
•
9978de1
1
Parent(s):
9097a15
Training in progress, step 500
Browse files- .gitignore +1 -0
- added_tokens.json +3 -0
- config.json +109 -0
- pytorch_model.bin +3 -0
- runs/Aug03_14-39-33_6d74df294123/1659537591.8656235/events.out.tfevents.1659537591.6d74df294123.79.1 +3 -0
- runs/Aug03_14-39-33_6d74df294123/events.out.tfevents.1659537591.6d74df294123.79.0 +3 -0
- special_tokens_map.json +9 -0
- spm.model +3 -0
- tokenizer.json +0 -0
- tokenizer_config.json +16 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
added_tokens.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"[MASK]": 128000
|
3 |
+
}
|
config.json
ADDED
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "microsoft/deberta-v3-base",
|
3 |
+
"architectures": [
|
4 |
+
"DebertaV2ForTokenClassification"
|
5 |
+
],
|
6 |
+
"attention_probs_dropout_prob": 0.1,
|
7 |
+
"hidden_act": "gelu",
|
8 |
+
"hidden_dropout_prob": 0.1,
|
9 |
+
"hidden_size": 768,
|
10 |
+
"id2label": {
|
11 |
+
"0": "L-COLOR",
|
12 |
+
"1": "U-FOOD",
|
13 |
+
"2": "U-QUANTITY",
|
14 |
+
"3": "U-UNIT",
|
15 |
+
"4": "U-PHYSICAL_QUALITY",
|
16 |
+
"5": "B-PHYSICAL_QUALITY",
|
17 |
+
"6": "B-PART",
|
18 |
+
"7": "I-QUANTITY",
|
19 |
+
"8": "B-UNIT",
|
20 |
+
"9": "L-PART",
|
21 |
+
"10": "B-TASTE",
|
22 |
+
"11": "B-PURPOSE",
|
23 |
+
"12": "I-PART",
|
24 |
+
"13": "L-UNIT",
|
25 |
+
"14": "L-TASTE",
|
26 |
+
"15": "L-PHYSICAL_QUALITY",
|
27 |
+
"16": "L-PROCESS",
|
28 |
+
"17": "B-FOOD",
|
29 |
+
"18": "L-QUANTITY",
|
30 |
+
"19": "I-PHYSICAL_QUALITY",
|
31 |
+
"20": "B-COLOR",
|
32 |
+
"21": "I-TASTE",
|
33 |
+
"22": "B-QUANTITY",
|
34 |
+
"23": "L-FOOD",
|
35 |
+
"24": "U-PROCESS",
|
36 |
+
"25": "L-PURPOSE",
|
37 |
+
"26": "B-PROCESS",
|
38 |
+
"27": "I-FOOD",
|
39 |
+
"28": "U-COLOR",
|
40 |
+
"29": "U-PART",
|
41 |
+
"30": "I-PURPOSE",
|
42 |
+
"31": "I-UNIT",
|
43 |
+
"32": "I-PROCESS",
|
44 |
+
"33": "O",
|
45 |
+
"34": "U-TASTE"
|
46 |
+
},
|
47 |
+
"initializer_range": 0.02,
|
48 |
+
"intermediate_size": 3072,
|
49 |
+
"label2id": {
|
50 |
+
"B-COLOR": 20,
|
51 |
+
"B-FOOD": 17,
|
52 |
+
"B-PART": 6,
|
53 |
+
"B-PHYSICAL_QUALITY": 5,
|
54 |
+
"B-PROCESS": 26,
|
55 |
+
"B-PURPOSE": 11,
|
56 |
+
"B-QUANTITY": 22,
|
57 |
+
"B-TASTE": 10,
|
58 |
+
"B-UNIT": 8,
|
59 |
+
"I-FOOD": 27,
|
60 |
+
"I-PART": 12,
|
61 |
+
"I-PHYSICAL_QUALITY": 19,
|
62 |
+
"I-PROCESS": 32,
|
63 |
+
"I-PURPOSE": 30,
|
64 |
+
"I-QUANTITY": 7,
|
65 |
+
"I-TASTE": 21,
|
66 |
+
"I-UNIT": 31,
|
67 |
+
"L-COLOR": 0,
|
68 |
+
"L-FOOD": 23,
|
69 |
+
"L-PART": 9,
|
70 |
+
"L-PHYSICAL_QUALITY": 15,
|
71 |
+
"L-PROCESS": 16,
|
72 |
+
"L-PURPOSE": 25,
|
73 |
+
"L-QUANTITY": 18,
|
74 |
+
"L-TASTE": 14,
|
75 |
+
"L-UNIT": 13,
|
76 |
+
"O": 33,
|
77 |
+
"U-COLOR": 28,
|
78 |
+
"U-FOOD": 1,
|
79 |
+
"U-PART": 29,
|
80 |
+
"U-PHYSICAL_QUALITY": 4,
|
81 |
+
"U-PROCESS": 24,
|
82 |
+
"U-QUANTITY": 2,
|
83 |
+
"U-TASTE": 34,
|
84 |
+
"U-UNIT": 3
|
85 |
+
},
|
86 |
+
"layer_norm_eps": 1e-07,
|
87 |
+
"max_position_embeddings": 512,
|
88 |
+
"max_relative_positions": -1,
|
89 |
+
"model_type": "deberta-v2",
|
90 |
+
"norm_rel_ebd": "layer_norm",
|
91 |
+
"num_attention_heads": 12,
|
92 |
+
"num_hidden_layers": 12,
|
93 |
+
"pad_token_id": 0,
|
94 |
+
"pooler_dropout": 0,
|
95 |
+
"pooler_hidden_act": "gelu",
|
96 |
+
"pooler_hidden_size": 768,
|
97 |
+
"pos_att_type": [
|
98 |
+
"p2c",
|
99 |
+
"c2p"
|
100 |
+
],
|
101 |
+
"position_biased_input": false,
|
102 |
+
"position_buckets": 256,
|
103 |
+
"relative_attention": true,
|
104 |
+
"share_att_key": true,
|
105 |
+
"torch_dtype": "float32",
|
106 |
+
"transformers_version": "4.21.0",
|
107 |
+
"type_vocab_size": 0,
|
108 |
+
"vocab_size": 128100
|
109 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f9434e507761775d20129b66e61ab9d9d187a7ac245d01aada49067a821e684d
|
3 |
+
size 735505455
|
runs/Aug03_14-39-33_6d74df294123/1659537591.8656235/events.out.tfevents.1659537591.6d74df294123.79.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:78ef099336e3148edcaad92da99bfb2b9cbd398ae975a38565058dcf91792124
|
3 |
+
size 5410
|
runs/Aug03_14-39-33_6d74df294123/events.out.tfevents.1659537591.6d74df294123.79.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0e11fb980f0e821f694a7d3b09e86c3ac481af0dc0ffab7b6a87ba595c866977
|
3 |
+
size 11119
|
special_tokens_map.json
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": "[CLS]",
|
3 |
+
"cls_token": "[CLS]",
|
4 |
+
"eos_token": "[SEP]",
|
5 |
+
"mask_token": "[MASK]",
|
6 |
+
"pad_token": "[PAD]",
|
7 |
+
"sep_token": "[SEP]",
|
8 |
+
"unk_token": "[UNK]"
|
9 |
+
}
|
spm.model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c679fbf93643d19aab7ee10c0b99e460bdbc02fedf34b92b05af343b4af586fd
|
3 |
+
size 2464616
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": "[CLS]",
|
3 |
+
"cls_token": "[CLS]",
|
4 |
+
"do_lower_case": false,
|
5 |
+
"eos_token": "[SEP]",
|
6 |
+
"mask_token": "[MASK]",
|
7 |
+
"name_or_path": "microsoft/deberta-v3-base",
|
8 |
+
"pad_token": "[PAD]",
|
9 |
+
"sep_token": "[SEP]",
|
10 |
+
"sp_model_kwargs": {},
|
11 |
+
"special_tokens_map_file": null,
|
12 |
+
"split_by_punct": false,
|
13 |
+
"tokenizer_class": "DebertaV2Tokenizer",
|
14 |
+
"unk_token": "[UNK]",
|
15 |
+
"vocab_type": "spm"
|
16 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2ad7b47512f425dbd0a6b745dee022bcf3c16517e217080b83f8784b7e98e26d
|
3 |
+
size 3375
|