Theoreticallyhugo commited on
Commit
07ff026
1 Parent(s): 42dcf96

Training in progress, epoch 1

Browse files
config.json ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "openai-community/gpt2",
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": 768,
34
+ "n_head": 12,
35
+ "n_inner": null,
36
+ "n_layer": 12,
37
+ "n_positions": 1024,
38
+ "reorder_and_upcast_attn": false,
39
+ "resid_pdrop": 0.1,
40
+ "scale_attn_by_inverse_layer_idx": false,
41
+ "scale_attn_weights": true,
42
+ "summary_activation": null,
43
+ "summary_first_dropout": 0.1,
44
+ "summary_proj_to_labels": true,
45
+ "summary_type": "cls_index",
46
+ "summary_use_proj": true,
47
+ "task_specific_params": {
48
+ "text-generation": {
49
+ "do_sample": true,
50
+ "max_length": 50
51
+ }
52
+ },
53
+ "torch_dtype": "float32",
54
+ "transformers_version": "4.37.2",
55
+ "use_cache": true,
56
+ "vocab_size": 50257
57
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
meta_data/meta_s42_e5_cvi0.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"B-Claim": {"precision": 0.0, "recall": 0.0, "f1-score": 0.0, "support": 284.0}, "B-MajorClaim": {"precision": 0.2, "recall": 0.028368794326241134, "f1-score": 0.04968944099378882, "support": 141.0}, "B-Premise": {"precision": 0.5708502024291497, "recall": 0.19915254237288135, "f1-score": 0.29528795811518327, "support": 708.0}, "I-Claim": {"precision": 0.38082266412421684, "recall": 0.3428991905813098, "f1-score": 0.3608673205988642, "support": 4077.0}, "I-MajorClaim": {"precision": 0.5423883318140383, "recall": 0.2939723320158103, "f1-score": 0.38128804870233907, "support": 2024.0}, "I-Premise": {"precision": 0.7635793871866295, "recall": 0.8964192282537606, "f1-score": 0.8246841155234658, "support": 12232.0}, "O": {"precision": 0.8210081497132509, "recall": 0.8269152817186867, "f1-score": 0.8239511283889535, "support": 9868.0}, "accuracy": 0.7248585259425923, "macro avg": {"precision": 0.4683783907524693, "recall": 0.3696753384669557, "f1-score": 0.3908240017603707, "support": 29334.0}, "weighted avg": {"precision": 0.6996857371644881, "recall": 0.7248585259425923, "f1-score": 0.7048932637283017, "support": 29334.0}}
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dffd6ca1b9a967c48107e4de9d9c46e3d941d739d5ce3524ecde546c2439a2d8
3
+ size 497795892
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:3de6d344124e5863e9241eb76d1a97a364b33ddb05a106c98ba575ed97b11c47
3
+ size 4664
vocab.json ADDED
The diff for this file is too large to render. See raw diff