Commit
·
c54e1e8
1
Parent(s):
0b587e7
Training in progress, epoch 1
Browse files- .gitignore +1 -0
- added_tokens.json +3 -0
- config.json +101 -0
- pytorch_model.bin +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,101 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "microsoft/deberta-v3-large",
|
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": 1024,
|
10 |
+
"id2label": {
|
11 |
+
"0": "O",
|
12 |
+
"1": "B-Laptops_Screen_Size",
|
13 |
+
"2": "I-Laptops_Screen_Size",
|
14 |
+
"3": "B-Laptops_Processor_Speed",
|
15 |
+
"4": "I-Laptops_Processor_Speed",
|
16 |
+
"5": "B-Digital_Cameras_Resolution",
|
17 |
+
"6": "I-Digital_Cameras_Resolution",
|
18 |
+
"7": "B-Laptops_Refresh_Rate",
|
19 |
+
"8": "I-Laptops_Refresh_Rate",
|
20 |
+
"9": "B-Laptops_Battery_Life",
|
21 |
+
"10": "I-Laptops_Battery_Life",
|
22 |
+
"11": "B-Flash_Memory_Cards_Capacity",
|
23 |
+
"12": "I-Flash_Memory_Cards_Capacity",
|
24 |
+
"13": "B-Laptops_Processor_Brand",
|
25 |
+
"14": "I-Laptops_Processor_Brand",
|
26 |
+
"15": "B-Laptops_Weight",
|
27 |
+
"16": "I-Laptops_Weight",
|
28 |
+
"17": "B-Digital_Cameras_Optical_Zoom",
|
29 |
+
"18": "I-Digital_Cameras_Optical_Zoom",
|
30 |
+
"19": "B-Laptops_Resolution",
|
31 |
+
"20": "I-Laptops_Resolution",
|
32 |
+
"21": "B-Digital_Cameras_Sensor_Type",
|
33 |
+
"22": "I-Digital_Cameras_Sensor_Type",
|
34 |
+
"23": "B-Digital_Cameras_Sensor_Size",
|
35 |
+
"24": "I-Digital_Cameras_Sensor_Size",
|
36 |
+
"25": "B-Laptops_Number_of_Cores",
|
37 |
+
"26": "I-Laptops_Number_of_Cores",
|
38 |
+
"27": "B-Flash_Memory_Cards_SD_Format",
|
39 |
+
"28": "I-Flash_Memory_Cards_SD_Format",
|
40 |
+
"29": "B-Digital_Cameras_Camera_Weight",
|
41 |
+
"30": "I-Digital_Cameras_Camera_Weight"
|
42 |
+
},
|
43 |
+
"initializer_range": 0.02,
|
44 |
+
"intermediate_size": 4096,
|
45 |
+
"label2id": {
|
46 |
+
"B-Digital_Cameras_Camera_Weight": 29,
|
47 |
+
"B-Digital_Cameras_Optical_Zoom": 17,
|
48 |
+
"B-Digital_Cameras_Resolution": 5,
|
49 |
+
"B-Digital_Cameras_Sensor_Size": 23,
|
50 |
+
"B-Digital_Cameras_Sensor_Type": 21,
|
51 |
+
"B-Flash_Memory_Cards_Capacity": 11,
|
52 |
+
"B-Flash_Memory_Cards_SD_Format": 27,
|
53 |
+
"B-Laptops_Battery_Life": 9,
|
54 |
+
"B-Laptops_Number_of_Cores": 25,
|
55 |
+
"B-Laptops_Processor_Brand": 13,
|
56 |
+
"B-Laptops_Processor_Speed": 3,
|
57 |
+
"B-Laptops_Refresh_Rate": 7,
|
58 |
+
"B-Laptops_Resolution": 19,
|
59 |
+
"B-Laptops_Screen_Size": 1,
|
60 |
+
"B-Laptops_Weight": 15,
|
61 |
+
"I-Digital_Cameras_Camera_Weight": 30,
|
62 |
+
"I-Digital_Cameras_Optical_Zoom": 18,
|
63 |
+
"I-Digital_Cameras_Resolution": 6,
|
64 |
+
"I-Digital_Cameras_Sensor_Size": 24,
|
65 |
+
"I-Digital_Cameras_Sensor_Type": 22,
|
66 |
+
"I-Flash_Memory_Cards_Capacity": 12,
|
67 |
+
"I-Flash_Memory_Cards_SD_Format": 28,
|
68 |
+
"I-Laptops_Battery_Life": 10,
|
69 |
+
"I-Laptops_Number_of_Cores": 26,
|
70 |
+
"I-Laptops_Processor_Brand": 14,
|
71 |
+
"I-Laptops_Processor_Speed": 4,
|
72 |
+
"I-Laptops_Refresh_Rate": 8,
|
73 |
+
"I-Laptops_Resolution": 20,
|
74 |
+
"I-Laptops_Screen_Size": 2,
|
75 |
+
"I-Laptops_Weight": 16,
|
76 |
+
"O": 0
|
77 |
+
},
|
78 |
+
"layer_norm_eps": 1e-07,
|
79 |
+
"max_position_embeddings": 512,
|
80 |
+
"max_relative_positions": -1,
|
81 |
+
"model_type": "deberta-v2",
|
82 |
+
"norm_rel_ebd": "layer_norm",
|
83 |
+
"num_attention_heads": 16,
|
84 |
+
"num_hidden_layers": 24,
|
85 |
+
"pad_token_id": 0,
|
86 |
+
"pooler_dropout": 0,
|
87 |
+
"pooler_hidden_act": "gelu",
|
88 |
+
"pooler_hidden_size": 1024,
|
89 |
+
"pos_att_type": [
|
90 |
+
"p2c",
|
91 |
+
"c2p"
|
92 |
+
],
|
93 |
+
"position_biased_input": false,
|
94 |
+
"position_buckets": 256,
|
95 |
+
"relative_attention": true,
|
96 |
+
"share_att_key": true,
|
97 |
+
"torch_dtype": "float32",
|
98 |
+
"transformers_version": "4.30.1",
|
99 |
+
"type_vocab_size": 0,
|
100 |
+
"vocab_size": 128100
|
101 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:21a59fca37dbaa0c637f40b4054cbe760552c0fefaa96a143e4d10d8bef2694d
|
3 |
+
size 1736316145
|
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 |
+
"clean_up_tokenization_spaces": true,
|
4 |
+
"cls_token": "[CLS]",
|
5 |
+
"do_lower_case": false,
|
6 |
+
"eos_token": "[SEP]",
|
7 |
+
"mask_token": "[MASK]",
|
8 |
+
"model_max_length": 1000000000000000019884624838656,
|
9 |
+
"pad_token": "[PAD]",
|
10 |
+
"sep_token": "[SEP]",
|
11 |
+
"sp_model_kwargs": {},
|
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:8f7b9b0269895f4c2e3caa69c531419e554b836f67edb2ee7159200c018ca4e2
|
3 |
+
size 4091
|