Ashjohn2002
commited on
Commit
•
5199af3
1
Parent(s):
0cd7598
Training in progress, step 500
Browse files- config.json +69 -0
- merges.txt +0 -0
- model.safetensors +3 -0
- runs/Jun24_10-16-00_341e2dff027a/events.out.tfevents.1719224170.341e2dff027a.176.0 +3 -0
- runs/Jun24_10-17-48_341e2dff027a/events.out.tfevents.1719224275.341e2dff027a.176.1 +3 -0
- runs/Jun24_10-18-36_341e2dff027a/events.out.tfevents.1719224323.341e2dff027a.176.2 +3 -0
- runs/Jun24_10-18-56_341e2dff027a/events.out.tfevents.1719224344.341e2dff027a.176.3 +3 -0
- runs/Jun24_10-20-54_341e2dff027a/events.out.tfevents.1719224523.341e2dff027a.176.4 +3 -0
- runs/Jun24_10-20-54_341e2dff027a/events.out.tfevents.1719224562.341e2dff027a.176.5 +3 -0
- runs/Jun24_10-22-55_341e2dff027a/events.out.tfevents.1719224583.341e2dff027a.176.6 +3 -0
- runs/Jun24_10-27-23_341e2dff027a/events.out.tfevents.1719224845.341e2dff027a.4979.0 +3 -0
- runs/Jun24_10-28-53_341e2dff027a/events.out.tfevents.1719224943.341e2dff027a.4979.1 +3 -0
- special_tokens_map.json +51 -0
- tokenizer.json +0 -0
- tokenizer_config.json +61 -0
- training_args.bin +3 -0
- vocab.json +0 -0
config.json
ADDED
@@ -0,0 +1,69 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "facebook/bart-large-cnn",
|
3 |
+
"_num_labels": 3,
|
4 |
+
"activation_dropout": 0.0,
|
5 |
+
"activation_function": "gelu",
|
6 |
+
"add_final_layer_norm": false,
|
7 |
+
"architectures": [
|
8 |
+
"BartForConditionalGeneration"
|
9 |
+
],
|
10 |
+
"attention_dropout": 0.0,
|
11 |
+
"bos_token_id": 0,
|
12 |
+
"classif_dropout": 0.0,
|
13 |
+
"classifier_dropout": 0.0,
|
14 |
+
"d_model": 1024,
|
15 |
+
"decoder_attention_heads": 16,
|
16 |
+
"decoder_ffn_dim": 4096,
|
17 |
+
"decoder_layerdrop": 0.0,
|
18 |
+
"decoder_layers": 12,
|
19 |
+
"decoder_start_token_id": 2,
|
20 |
+
"dropout": 0.1,
|
21 |
+
"encoder_attention_heads": 16,
|
22 |
+
"encoder_ffn_dim": 4096,
|
23 |
+
"encoder_layerdrop": 0.0,
|
24 |
+
"encoder_layers": 12,
|
25 |
+
"eos_token_id": 2,
|
26 |
+
"force_bos_token_to_be_generated": true,
|
27 |
+
"forced_bos_token_id": 0,
|
28 |
+
"forced_eos_token_id": 2,
|
29 |
+
"gradient_checkpointing": false,
|
30 |
+
"id2label": {
|
31 |
+
"0": "LABEL_0",
|
32 |
+
"1": "LABEL_1",
|
33 |
+
"2": "LABEL_2"
|
34 |
+
},
|
35 |
+
"init_std": 0.02,
|
36 |
+
"is_encoder_decoder": true,
|
37 |
+
"label2id": {
|
38 |
+
"LABEL_0": 0,
|
39 |
+
"LABEL_1": 1,
|
40 |
+
"LABEL_2": 2
|
41 |
+
},
|
42 |
+
"length_penalty": 1.2,
|
43 |
+
"max_length": 256,
|
44 |
+
"max_position_embeddings": 1024,
|
45 |
+
"min_length": 50,
|
46 |
+
"model_type": "bart",
|
47 |
+
"no_repeat_ngram_size": 3,
|
48 |
+
"normalize_before": false,
|
49 |
+
"num_beams": 4,
|
50 |
+
"num_hidden_layers": 12,
|
51 |
+
"output_past": true,
|
52 |
+
"pad_token_id": 1,
|
53 |
+
"prefix": " ",
|
54 |
+
"scale_embedding": false,
|
55 |
+
"task_specific_params": {
|
56 |
+
"summarization": {
|
57 |
+
"early_stopping": true,
|
58 |
+
"length_penalty": 2.0,
|
59 |
+
"max_length": 142,
|
60 |
+
"min_length": 56,
|
61 |
+
"no_repeat_ngram_size": 3,
|
62 |
+
"num_beams": 4
|
63 |
+
}
|
64 |
+
},
|
65 |
+
"torch_dtype": "float32",
|
66 |
+
"transformers_version": "4.41.2",
|
67 |
+
"use_cache": true,
|
68 |
+
"vocab_size": 50264
|
69 |
+
}
|
merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:1cfe780f04695a5fada330ec4ae0a81b0a6d549b4209f578154b3051b936b097
|
3 |
+
size 1625422896
|
runs/Jun24_10-16-00_341e2dff027a/events.out.tfevents.1719224170.341e2dff027a.176.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b0747337f8036bd11335f9cd393b573db511b919058737bed3d9b4be94ef8bcd
|
3 |
+
size 5934
|
runs/Jun24_10-17-48_341e2dff027a/events.out.tfevents.1719224275.341e2dff027a.176.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:14b35a25844abab80202ab66fb57522a9a8ad71351f8f9097d459afb76d3eb9d
|
3 |
+
size 5934
|
runs/Jun24_10-18-36_341e2dff027a/events.out.tfevents.1719224323.341e2dff027a.176.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:04f708bbd839d681fa478ee1074aed4c275b844423ec56a83c6530c9967a9ab5
|
3 |
+
size 5934
|
runs/Jun24_10-18-56_341e2dff027a/events.out.tfevents.1719224344.341e2dff027a.176.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:09a0d058bcddbc7c5bc7536173e517dbda6cf6edd8929fa43e1cf6a835d60f9b
|
3 |
+
size 11780
|
runs/Jun24_10-20-54_341e2dff027a/events.out.tfevents.1719224523.341e2dff027a.176.4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:9e68f3c00a38bb86b838e2486e04fc3a9ce75118d0498c8730642069f6bb4ba1
|
3 |
+
size 5934
|
runs/Jun24_10-20-54_341e2dff027a/events.out.tfevents.1719224562.341e2dff027a.176.5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:dedda8cdc8de718ab2e7d605159e424a5ec3010652eb17f8c38a60419e8e12c9
|
3 |
+
size 5934
|
runs/Jun24_10-22-55_341e2dff027a/events.out.tfevents.1719224583.341e2dff027a.176.6
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:d47daed26b869cfad5ec212948464448962bad834c33d83a16cf7940a203cf65
|
3 |
+
size 5934
|
runs/Jun24_10-27-23_341e2dff027a/events.out.tfevents.1719224845.341e2dff027a.4979.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:f5d1c436a1165fe402c7908df597466330122571e221b14da19a90759c5e46ac
|
3 |
+
size 5934
|
runs/Jun24_10-28-53_341e2dff027a/events.out.tfevents.1719224943.341e2dff027a.4979.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:b65727b1830e1b0444e5a8c09997c9e337c6ef5e47cae153f3a9587d66924b0e
|
3 |
+
size 7720
|
special_tokens_map.json
ADDED
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": {
|
3 |
+
"content": "<s>",
|
4 |
+
"lstrip": false,
|
5 |
+
"normalized": true,
|
6 |
+
"rstrip": false,
|
7 |
+
"single_word": false
|
8 |
+
},
|
9 |
+
"cls_token": {
|
10 |
+
"content": "<s>",
|
11 |
+
"lstrip": false,
|
12 |
+
"normalized": true,
|
13 |
+
"rstrip": false,
|
14 |
+
"single_word": false
|
15 |
+
},
|
16 |
+
"eos_token": {
|
17 |
+
"content": "</s>",
|
18 |
+
"lstrip": false,
|
19 |
+
"normalized": true,
|
20 |
+
"rstrip": false,
|
21 |
+
"single_word": false
|
22 |
+
},
|
23 |
+
"mask_token": {
|
24 |
+
"content": "<mask>",
|
25 |
+
"lstrip": true,
|
26 |
+
"normalized": true,
|
27 |
+
"rstrip": false,
|
28 |
+
"single_word": false
|
29 |
+
},
|
30 |
+
"pad_token": {
|
31 |
+
"content": "<pad>",
|
32 |
+
"lstrip": false,
|
33 |
+
"normalized": true,
|
34 |
+
"rstrip": false,
|
35 |
+
"single_word": false
|
36 |
+
},
|
37 |
+
"sep_token": {
|
38 |
+
"content": "</s>",
|
39 |
+
"lstrip": false,
|
40 |
+
"normalized": true,
|
41 |
+
"rstrip": false,
|
42 |
+
"single_word": false
|
43 |
+
},
|
44 |
+
"unk_token": {
|
45 |
+
"content": "<unk>",
|
46 |
+
"lstrip": false,
|
47 |
+
"normalized": true,
|
48 |
+
"rstrip": false,
|
49 |
+
"single_word": false
|
50 |
+
}
|
51 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1,61 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_prefix_space": false,
|
3 |
+
"added_tokens_decoder": {
|
4 |
+
"0": {
|
5 |
+
"content": "<s>",
|
6 |
+
"lstrip": false,
|
7 |
+
"normalized": true,
|
8 |
+
"rstrip": false,
|
9 |
+
"single_word": false,
|
10 |
+
"special": true
|
11 |
+
},
|
12 |
+
"1": {
|
13 |
+
"content": "<pad>",
|
14 |
+
"lstrip": false,
|
15 |
+
"normalized": true,
|
16 |
+
"rstrip": false,
|
17 |
+
"single_word": false,
|
18 |
+
"special": true
|
19 |
+
},
|
20 |
+
"2": {
|
21 |
+
"content": "</s>",
|
22 |
+
"lstrip": false,
|
23 |
+
"normalized": true,
|
24 |
+
"rstrip": false,
|
25 |
+
"single_word": false,
|
26 |
+
"special": true
|
27 |
+
},
|
28 |
+
"3": {
|
29 |
+
"content": "<unk>",
|
30 |
+
"lstrip": false,
|
31 |
+
"normalized": true,
|
32 |
+
"rstrip": false,
|
33 |
+
"single_word": false,
|
34 |
+
"special": true
|
35 |
+
},
|
36 |
+
"50264": {
|
37 |
+
"content": "<mask>",
|
38 |
+
"lstrip": true,
|
39 |
+
"normalized": true,
|
40 |
+
"rstrip": false,
|
41 |
+
"single_word": false,
|
42 |
+
"special": true
|
43 |
+
}
|
44 |
+
},
|
45 |
+
"bos_token": "<s>",
|
46 |
+
"clean_up_tokenization_spaces": true,
|
47 |
+
"cls_token": "<s>",
|
48 |
+
"eos_token": "</s>",
|
49 |
+
"errors": "replace",
|
50 |
+
"mask_token": "<mask>",
|
51 |
+
"max_length": 128,
|
52 |
+
"model_max_length": 1024,
|
53 |
+
"pad_token": "<pad>",
|
54 |
+
"sep_token": "</s>",
|
55 |
+
"stride": 0,
|
56 |
+
"tokenizer_class": "BartTokenizer",
|
57 |
+
"trim_offsets": true,
|
58 |
+
"truncation_side": "right",
|
59 |
+
"truncation_strategy": "longest_first",
|
60 |
+
"unk_token": "<unk>"
|
61 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:342723b64d0bf62b00f8a889cb62e1e27d4ddf727edffc835e07a4751a177d37
|
3 |
+
size 5304
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|