Training in progress, epoch 1
Browse files- .gitignore +1 -0
- added_tokens.json +1 -0
- config.json +95 -0
- pytorch_model.bin +3 -0
- runs/Dec28_19-57-38_4f99b52a8798/1640721621.404109/events.out.tfevents.1640721621.4f99b52a8798.3598.1 +3 -0
- runs/Dec28_19-57-38_4f99b52a8798/events.out.tfevents.1640721602.4f99b52a8798.3598.0 +3 -0
- special_tokens_map.json +1 -0
- spm.model +3 -0
- tokenizer_config.json +1 -0
- training_args.bin +3 -0
.gitignore
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
checkpoint-*/
|
added_tokens.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"[MASK]": 128000}
|
config.json
ADDED
@@ -0,0 +1,95 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "microsoft/deberta-v3-base",
|
3 |
+
"architectures": [
|
4 |
+
"DebertaV2ForSequenceClassification"
|
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": "LABEL_0",
|
12 |
+
"1": "LABEL_1",
|
13 |
+
"2": "LABEL_2",
|
14 |
+
"3": "LABEL_3",
|
15 |
+
"4": "LABEL_4",
|
16 |
+
"5": "LABEL_5",
|
17 |
+
"6": "LABEL_6",
|
18 |
+
"7": "LABEL_7",
|
19 |
+
"8": "LABEL_8",
|
20 |
+
"9": "LABEL_9",
|
21 |
+
"10": "LABEL_10",
|
22 |
+
"11": "LABEL_11",
|
23 |
+
"12": "LABEL_12",
|
24 |
+
"13": "LABEL_13",
|
25 |
+
"14": "LABEL_14",
|
26 |
+
"15": "LABEL_15",
|
27 |
+
"16": "LABEL_16",
|
28 |
+
"17": "LABEL_17",
|
29 |
+
"18": "LABEL_18",
|
30 |
+
"19": "LABEL_19",
|
31 |
+
"20": "LABEL_20",
|
32 |
+
"21": "LABEL_21",
|
33 |
+
"22": "LABEL_22",
|
34 |
+
"23": "LABEL_23",
|
35 |
+
"24": "LABEL_24",
|
36 |
+
"25": "LABEL_25",
|
37 |
+
"26": "LABEL_26",
|
38 |
+
"27": "LABEL_27"
|
39 |
+
},
|
40 |
+
"initializer_range": 0.02,
|
41 |
+
"intermediate_size": 3072,
|
42 |
+
"label2id": {
|
43 |
+
"LABEL_0": 0,
|
44 |
+
"LABEL_1": 1,
|
45 |
+
"LABEL_10": 10,
|
46 |
+
"LABEL_11": 11,
|
47 |
+
"LABEL_12": 12,
|
48 |
+
"LABEL_13": 13,
|
49 |
+
"LABEL_14": 14,
|
50 |
+
"LABEL_15": 15,
|
51 |
+
"LABEL_16": 16,
|
52 |
+
"LABEL_17": 17,
|
53 |
+
"LABEL_18": 18,
|
54 |
+
"LABEL_19": 19,
|
55 |
+
"LABEL_2": 2,
|
56 |
+
"LABEL_20": 20,
|
57 |
+
"LABEL_21": 21,
|
58 |
+
"LABEL_22": 22,
|
59 |
+
"LABEL_23": 23,
|
60 |
+
"LABEL_24": 24,
|
61 |
+
"LABEL_25": 25,
|
62 |
+
"LABEL_26": 26,
|
63 |
+
"LABEL_27": 27,
|
64 |
+
"LABEL_3": 3,
|
65 |
+
"LABEL_4": 4,
|
66 |
+
"LABEL_5": 5,
|
67 |
+
"LABEL_6": 6,
|
68 |
+
"LABEL_7": 7,
|
69 |
+
"LABEL_8": 8,
|
70 |
+
"LABEL_9": 9
|
71 |
+
},
|
72 |
+
"layer_norm_eps": 1e-07,
|
73 |
+
"max_position_embeddings": 512,
|
74 |
+
"max_relative_positions": -1,
|
75 |
+
"model_type": "deberta-v2",
|
76 |
+
"norm_rel_ebd": "layer_norm",
|
77 |
+
"num_attention_heads": 12,
|
78 |
+
"num_hidden_layers": 12,
|
79 |
+
"pad_token_id": 0,
|
80 |
+
"pooler_dropout": 0,
|
81 |
+
"pooler_hidden_act": "gelu",
|
82 |
+
"pooler_hidden_size": 768,
|
83 |
+
"pos_att_type": [
|
84 |
+
"p2c",
|
85 |
+
"c2p"
|
86 |
+
],
|
87 |
+
"position_biased_input": false,
|
88 |
+
"position_buckets": 256,
|
89 |
+
"relative_attention": true,
|
90 |
+
"share_att_key": true,
|
91 |
+
"torch_dtype": "float32",
|
92 |
+
"transformers_version": "4.15.0",
|
93 |
+
"type_vocab_size": 0,
|
94 |
+
"vocab_size": 128100
|
95 |
+
}
|
pytorch_model.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f501f93ffd7bc891c113c76c37d6960a901cfd50edfd4c828ea1f9e6778e2265
|
3 |
+
size 737861675
|
runs/Dec28_19-57-38_4f99b52a8798/1640721621.404109/events.out.tfevents.1640721621.4f99b52a8798.3598.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:0636560a8bee6b4e1db0bc3f885cdce20fca885294501bada34097773d5c2fd9
|
3 |
+
size 4783
|
runs/Dec28_19-57-38_4f99b52a8798/events.out.tfevents.1640721602.4f99b52a8798.3598.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c1b70090305927f521d1f2fbd35b8cdc739cbe588b9a0a3c6845c012d08d7fb1
|
3 |
+
size 7100
|
special_tokens_map.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"bos_token": "[CLS]", "eos_token": "[SEP]", "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
|
spm.model
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:c679fbf93643d19aab7ee10c0b99e460bdbc02fedf34b92b05af343b4af586fd
|
3 |
+
size 2464616
|
tokenizer_config.json
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
{"do_lower_case": false, "bos_token": "[CLS]", "eos_token": "[SEP]", "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "split_by_punct": false, "sp_model_kwargs": {}, "vocab_type": "spm", "special_tokens_map_file": null, "tokenizer_file": null, "name_or_path": "microsoft/deberta-v3-base", "tokenizer_class": "DebertaV2Tokenizer"}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f220be35852d749c647b71ccddbda4126855a0b33d4c9288cc9a80422e154434
|
3 |
+
size 2991
|