Theoreticallyhugo commited on
Commit
0e081d3
1 Parent(s): abe6dd1

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "openai-community/gpt2-medium",
3
+ "activation_function": "gelu_new",
4
+ "architectures": [
5
+ "GPT2ForTokenClassification"
6
+ ],
7
+ "attn_pdrop": 0.1,
8
+ "bos_token_id": 50256,
9
+ "embd_pdrop": 0.1,
10
+ "eos_token_id": 50256,
11
+ "id2label": {
12
+ "0": "O",
13
+ "1": "B-MajorClaim",
14
+ "2": "I-MajorClaim",
15
+ "3": "B-Claim",
16
+ "4": "I-Claim",
17
+ "5": "B-Premise",
18
+ "6": "I-Premise"
19
+ },
20
+ "initializer_range": 0.02,
21
+ "label2id": {
22
+ "B-Claim": 3,
23
+ "B-MajorClaim": 1,
24
+ "B-Premise": 5,
25
+ "I-Claim": 4,
26
+ "I-MajorClaim": 2,
27
+ "I-Premise": 6,
28
+ "O": 0
29
+ },
30
+ "layer_norm_epsilon": 1e-05,
31
+ "model_type": "gpt2",
32
+ "n_ctx": 1024,
33
+ "n_embd": 1024,
34
+ "n_head": 16,
35
+ "n_inner": null,
36
+ "n_layer": 24,
37
+ "n_positions": 1024,
38
+ "n_special": 0,
39
+ "predict_special_tokens": true,
40
+ "reorder_and_upcast_attn": false,
41
+ "resid_pdrop": 0.1,
42
+ "scale_attn_by_inverse_layer_idx": false,
43
+ "scale_attn_weights": true,
44
+ "summary_activation": null,
45
+ "summary_first_dropout": 0.1,
46
+ "summary_proj_to_labels": true,
47
+ "summary_type": "cls_index",
48
+ "summary_use_proj": true,
49
+ "task_specific_params": {
50
+ "text-generation": {
51
+ "do_sample": true,
52
+ "max_length": 50
53
+ }
54
+ },
55
+ "torch_dtype": "float32",
56
+ "transformers_version": "4.37.2",
57
+ "use_cache": true,
58
+ "vocab_size": 50257
59
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
meta_data/meta_s42_e10_cvi0.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"B-Claim": {"precision": 0.4259818731117825, "recall": 0.4964788732394366, "f1-score": 0.4585365853658536, "support": 284.0}, "B-MajorClaim": {"precision": 0.6343283582089553, "recall": 0.6028368794326241, "f1-score": 0.6181818181818182, "support": 141.0}, "B-Premise": {"precision": 0.6784741144414169, "recall": 0.7033898305084746, "f1-score": 0.6907073509015257, "support": 708.0}, "I-Claim": {"precision": 0.49383531483927784, "recall": 0.5501594309541329, "f1-score": 0.5204780136906834, "support": 4077.0}, "I-MajorClaim": {"precision": 0.7590822179732314, "recall": 0.5884387351778656, "f1-score": 0.6629557472863902, "support": 2024.0}, "I-Premise": {"precision": 0.8390768750974583, "recall": 0.8798234139960759, "f1-score": 0.8589671961050364, "support": 12232.0}, "O": {"precision": 0.9050880626223092, "recall": 0.8436359951357925, "f1-score": 0.8732822825972937, "support": 9868.0}, "accuracy": 0.7924251721551783, "macro avg": {"precision": 0.6765524023277759, "recall": 0.6663947369206289, "f1-score": 0.6690155705898002, "support": 29334.0}, "weighted avg": {"precision": 0.7989202000893961, "recall": 0.7924251721551783, "f1-score": 0.794117966618848, "support": 29334.0}}
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b8333ba11b2489c85fc614ea381d47e1049a411d6e1044479cc101cf93ec85e5
3
+ size 1419351732
special_tokens_map.json ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<|endoftext|>",
3
+ "eos_token": "<|endoftext|>",
4
+ "pad_token": "<|endoftext|>",
5
+ "unk_token": "<|endoftext|>"
6
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,20 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": true,
3
+ "added_tokens_decoder": {
4
+ "50256": {
5
+ "content": "<|endoftext|>",
6
+ "lstrip": false,
7
+ "normalized": true,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ }
12
+ },
13
+ "bos_token": "<|endoftext|>",
14
+ "clean_up_tokenization_spaces": true,
15
+ "eos_token": "<|endoftext|>",
16
+ "model_max_length": 1024,
17
+ "pad_token": "<|endoftext|>",
18
+ "tokenizer_class": "GPT2Tokenizer",
19
+ "unk_token": "<|endoftext|>"
20
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:653ef9bf52d022bf023dfbddb6573c4c7552b5d40dc69f9d4f8fcaed05504308
3
+ size 4664
vocab.json ADDED
The diff for this file is too large to render. See raw diff