Training in progress, step 3650
Browse files- added_tokens.json +3 -0
- config.json +72 -0
- model.safetensors +3 -0
- runs/Jan23_10-23-04_4e0cbbdf12c2/events.out.tfevents.1706005386.4e0cbbdf12c2.480231.0 +3 -0
- runs/Jan23_11-22-31_4e0cbbdf12c2/events.out.tfevents.1706008952.4e0cbbdf12c2.480231.1 +3 -0
- special_tokens_map.json +15 -0
- spm.model +3 -0
- tokenizer.json +0 -0
- tokenizer_config.json +58 -0
- training_args.bin +3 -0
added_tokens.json
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"[MASK]": 128000
|
3 |
+
}
|
config.json
ADDED
@@ -0,0 +1,72 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "microsoft/deberta-v3-large",
|
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": 1024,
|
10 |
+
"id2label": {
|
11 |
+
"0": "Award or honorific",
|
12 |
+
"1": "Birth of baby",
|
13 |
+
"2": "Committee Appointment",
|
14 |
+
"3": "Confirmation",
|
15 |
+
"4": "Death",
|
16 |
+
"5": "Election results",
|
17 |
+
"6": "Job change",
|
18 |
+
"7": "New caucus or caucus membership",
|
19 |
+
"8": "New leadership PAC",
|
20 |
+
"9": "New marriage, engagement or divorce",
|
21 |
+
"10": "New office address",
|
22 |
+
"11": "Party change",
|
23 |
+
"12": "Redrawing of district lines",
|
24 |
+
"13": "Subcommittee assignment",
|
25 |
+
"14": "Trending staffers",
|
26 |
+
"15": "Irrelevant"
|
27 |
+
},
|
28 |
+
"initializer_range": 0.02,
|
29 |
+
"intermediate_size": 4096,
|
30 |
+
"label2id": {
|
31 |
+
"Award or honorific": 0,
|
32 |
+
"Birth of baby": 1,
|
33 |
+
"Committee Appointment": 2,
|
34 |
+
"Confirmation": 3,
|
35 |
+
"Death": 4,
|
36 |
+
"Election results": 5,
|
37 |
+
"Irrelevant": 15,
|
38 |
+
"Job change": 6,
|
39 |
+
"New caucus or caucus membership": 7,
|
40 |
+
"New leadership PAC": 8,
|
41 |
+
"New marriage, engagement or divorce": 9,
|
42 |
+
"New office address": 10,
|
43 |
+
"Party change": 11,
|
44 |
+
"Redrawing of district lines": 12,
|
45 |
+
"Subcommittee assignment": 13,
|
46 |
+
"Trending staffers": 14
|
47 |
+
},
|
48 |
+
"layer_norm_eps": 1e-07,
|
49 |
+
"max_position_embeddings": 512,
|
50 |
+
"max_relative_positions": -1,
|
51 |
+
"model_type": "deberta-v2",
|
52 |
+
"norm_rel_ebd": "layer_norm",
|
53 |
+
"num_attention_heads": 16,
|
54 |
+
"num_hidden_layers": 24,
|
55 |
+
"pad_token_id": 0,
|
56 |
+
"pooler_dropout": 0,
|
57 |
+
"pooler_hidden_act": "gelu",
|
58 |
+
"pooler_hidden_size": 1024,
|
59 |
+
"pos_att_type": [
|
60 |
+
"p2c",
|
61 |
+
"c2p"
|
62 |
+
],
|
63 |
+
"position_biased_input": false,
|
64 |
+
"position_buckets": 256,
|
65 |
+
"problem_type": "multi_label_classification",
|
66 |
+
"relative_attention": true,
|
67 |
+
"share_att_key": true,
|
68 |
+
"torch_dtype": "float32",
|
69 |
+
"transformers_version": "4.36.2",
|
70 |
+
"type_vocab_size": 0,
|
71 |
+
"vocab_size": 128100
|
72 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:2076263183d3d6df407366657b6fe685522222bd3827afd9d82e1a3d36068762
|
3 |
+
size 1740361848
|
runs/Jan23_10-23-04_4e0cbbdf12c2/events.out.tfevents.1706005386.4e0cbbdf12c2.480231.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:91750c96dbf225ecc9138efdc2654f9a4db6070b13eb4016a9464e0686596716
|
3 |
+
size 7209
|
runs/Jan23_11-22-31_4e0cbbdf12c2/events.out.tfevents.1706008952.4e0cbbdf12c2.480231.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:52a66431801deafa0d312ff3202ad2ef26c2e14caa365b089706d013a212e350
|
3 |
+
size 7300
|
special_tokens_map.json
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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": {
|
9 |
+
"content": "[UNK]",
|
10 |
+
"lstrip": false,
|
11 |
+
"normalized": true,
|
12 |
+
"rstrip": false,
|
13 |
+
"single_word": false
|
14 |
+
}
|
15 |
+
}
|
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,58 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"added_tokens_decoder": {
|
3 |
+
"0": {
|
4 |
+
"content": "[PAD]",
|
5 |
+
"lstrip": false,
|
6 |
+
"normalized": false,
|
7 |
+
"rstrip": false,
|
8 |
+
"single_word": false,
|
9 |
+
"special": true
|
10 |
+
},
|
11 |
+
"1": {
|
12 |
+
"content": "[CLS]",
|
13 |
+
"lstrip": false,
|
14 |
+
"normalized": false,
|
15 |
+
"rstrip": false,
|
16 |
+
"single_word": false,
|
17 |
+
"special": true
|
18 |
+
},
|
19 |
+
"2": {
|
20 |
+
"content": "[SEP]",
|
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": true,
|
31 |
+
"rstrip": false,
|
32 |
+
"single_word": false,
|
33 |
+
"special": true
|
34 |
+
},
|
35 |
+
"128000": {
|
36 |
+
"content": "[MASK]",
|
37 |
+
"lstrip": false,
|
38 |
+
"normalized": false,
|
39 |
+
"rstrip": false,
|
40 |
+
"single_word": false,
|
41 |
+
"special": true
|
42 |
+
}
|
43 |
+
},
|
44 |
+
"bos_token": "[CLS]",
|
45 |
+
"clean_up_tokenization_spaces": true,
|
46 |
+
"cls_token": "[CLS]",
|
47 |
+
"do_lower_case": false,
|
48 |
+
"eos_token": "[SEP]",
|
49 |
+
"mask_token": "[MASK]",
|
50 |
+
"model_max_length": 1000000000000000019884624838656,
|
51 |
+
"pad_token": "[PAD]",
|
52 |
+
"sep_token": "[SEP]",
|
53 |
+
"sp_model_kwargs": {},
|
54 |
+
"split_by_punct": false,
|
55 |
+
"tokenizer_class": "DebertaV2Tokenizer",
|
56 |
+
"unk_token": "[UNK]",
|
57 |
+
"vocab_type": "spm"
|
58 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5f12717d69d2cbb7903dc2fc8acb3bb36706d953190450b3c833ced5c0dc934b
|
3 |
+
size 4728
|