TTian commited on
Commit
8e74529
1 Parent(s): 2607b15

Training in progress, step 10

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
added_tokens.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "[CLAIM_END]": 128006,
3
+ "[CLAIM_START]": 128005,
4
+ "[CONCLUDING STATEMENT_END]": 128014,
5
+ "[CONCLUDING STATEMENT_START]": 128013,
6
+ "[COUNTERCLAIM_END]": 128008,
7
+ "[COUNTERCLAIM_START]": 128007,
8
+ "[EVIDENCE_END]": 128012,
9
+ "[EVIDENCE_START]": 128011,
10
+ "[LEAD_END]": 128002,
11
+ "[LEAD_START]": 128001,
12
+ "[MASK]": 128000,
13
+ "[POSITION_END]": 128004,
14
+ "[POSITION_START]": 128003,
15
+ "[REBUTTAL_END]": 128010,
16
+ "[REBUTTAL_START]": 128009
17
+ }
config.json ADDED
@@ -0,0 +1,45 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "TTian/deberta-classifier-feedback-1024",
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": "LABEL_0",
12
+ "1": "LABEL_1",
13
+ "2": "LABEL_2"
14
+ },
15
+ "initializer_range": 0.02,
16
+ "intermediate_size": 4096,
17
+ "label2id": {
18
+ "LABEL_0": 0,
19
+ "LABEL_1": 1,
20
+ "LABEL_2": 2
21
+ },
22
+ "layer_norm_eps": 1e-07,
23
+ "max_position_embeddings": 1024,
24
+ "max_relative_positions": 128,
25
+ "model_type": "deberta-v2",
26
+ "norm_rel_ebd": "layer_norm",
27
+ "num_attention_heads": 16,
28
+ "num_hidden_layers": 24,
29
+ "pad_token_id": 0,
30
+ "pooler_dropout": 0,
31
+ "pooler_hidden_act": "gelu",
32
+ "pooler_hidden_size": 1024,
33
+ "pos_att_type": [
34
+ "p2c",
35
+ "c2p"
36
+ ],
37
+ "position_biased_input": false,
38
+ "position_buckets": 256,
39
+ "relative_attention": true,
40
+ "share_att_key": true,
41
+ "torch_dtype": "float32",
42
+ "transformers_version": "4.24.0",
43
+ "type_vocab_size": 0,
44
+ "vocab_size": 128100
45
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2b84a3dc8d01bb9ddbefbd71648711f1bfd244553ac50cdc018e92a86cf41d3f
3
+ size 1736202543
runs/Nov25_22-25-13_3a97d2e16f82/1669415698.589774/events.out.tfevents.1669415698.3a97d2e16f82.108.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c683846851de6544794357f68e7fbef483765d733ea9606aa84d423a4917c249
3
+ size 5544
runs/Nov25_22-25-13_3a97d2e16f82/events.out.tfevents.1669415698.3a97d2e16f82.108.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7dd5bf309fe1bc3847b060fab4cff1a228312461e0092714580848616cae7b72
3
+ size 4586
special_tokens_map.json ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "[LEAD_START]",
4
+ "[LEAD_END]",
5
+ "[POSITION_START]",
6
+ "[POSITION_END]",
7
+ "[CLAIM_START]",
8
+ "[CLAIM_END]",
9
+ "[COUNTERCLAIM_START]",
10
+ "[COUNTERCLAIM_END]",
11
+ "[REBUTTAL_START]",
12
+ "[REBUTTAL_END]",
13
+ "[EVIDENCE_START]",
14
+ "[EVIDENCE_END]",
15
+ "[CONCLUDING STATEMENT_START]",
16
+ "[CONCLUDING STATEMENT_END]"
17
+ ],
18
+ "bos_token": "[CLS]",
19
+ "cls_token": "[CLS]",
20
+ "eos_token": "[SEP]",
21
+ "mask_token": "[MASK]",
22
+ "pad_token": "[PAD]",
23
+ "sep_token": "[SEP]",
24
+ "unk_token": "[UNK]"
25
+ }
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,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "[LEAD_START]",
4
+ "[LEAD_END]",
5
+ "[POSITION_START]",
6
+ "[POSITION_END]",
7
+ "[CLAIM_START]",
8
+ "[CLAIM_END]",
9
+ "[COUNTERCLAIM_START]",
10
+ "[COUNTERCLAIM_END]",
11
+ "[REBUTTAL_START]",
12
+ "[REBUTTAL_END]",
13
+ "[EVIDENCE_START]",
14
+ "[EVIDENCE_END]",
15
+ "[CONCLUDING STATEMENT_START]",
16
+ "[CONCLUDING STATEMENT_END]"
17
+ ],
18
+ "bos_token": "[CLS]",
19
+ "cls_token": "[CLS]",
20
+ "do_lower_case": false,
21
+ "eos_token": "[SEP]",
22
+ "mask_token": "[MASK]",
23
+ "name_or_path": "TTian/deberta-classifier-feedback-1024",
24
+ "pad_token": "[PAD]",
25
+ "sep_token": "[SEP]",
26
+ "sp_model_kwargs": {},
27
+ "special_tokens_map_file": null,
28
+ "split_by_punct": false,
29
+ "tokenizer_class": "DebertaV2Tokenizer",
30
+ "unk_token": "[UNK]",
31
+ "vocab_type": "spm"
32
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e8428ef59b5405a35c5884ecad83fa4a0bc5114306e848027a717a95827c94ad
3
+ size 3439