Benjiccee commited on
Commit
b3b9b61
1 Parent(s): 3f147a6

Training complete!

Browse files
Files changed (24) hide show
  1. .gitignore +1 -0
  2. config.json +70 -0
  3. generation_config.json +16 -0
  4. merges.txt +0 -0
  5. pytorch_model.bin +3 -0
  6. runs/Jul30_19-45-45_admin-PC/1690739249.9119797/events.out.tfevents.1690739249.admin-PC.3556.1 +3 -0
  7. runs/Jul30_19-45-45_admin-PC/events.out.tfevents.1690739249.admin-PC.3556.0 +3 -0
  8. runs/Jul30_19-59-21_admin-PC/1690739990.3639538/events.out.tfevents.1690739990.admin-PC.23004.1 +3 -0
  9. runs/Jul30_19-59-21_admin-PC/events.out.tfevents.1690739990.admin-PC.23004.0 +3 -0
  10. runs/Jul30_20-03-42_admin-PC/1690740246.5559134/events.out.tfevents.1690740246.admin-PC.22948.1 +3 -0
  11. runs/Jul30_20-03-42_admin-PC/events.out.tfevents.1690740246.admin-PC.22948.0 +3 -0
  12. runs/Jul30_20-09-02_admin-PC/1690740578.129279/events.out.tfevents.1690740578.admin-PC.21976.1 +3 -0
  13. runs/Jul30_20-09-02_admin-PC/events.out.tfevents.1690740578.admin-PC.21976.0 +3 -0
  14. runs/Jul30_20-12-19_admin-PC/1690740781.9373882/events.out.tfevents.1690740781.admin-PC.21088.1 +3 -0
  15. runs/Jul30_20-12-19_admin-PC/events.out.tfevents.1690740781.admin-PC.21088.0 +3 -0
  16. runs/Jul30_20-16-05_admin-PC/1690741067.9457467/events.out.tfevents.1690741067.admin-PC.10424.1 +3 -0
  17. runs/Jul30_20-16-05_admin-PC/events.out.tfevents.1690741067.admin-PC.10424.0 +3 -0
  18. runs/Jul30_20-24-41_admin-PC/1690741511.1367981/events.out.tfevents.1690741511.admin-PC.10424.3 +3 -0
  19. runs/Jul30_20-24-41_admin-PC/events.out.tfevents.1690741511.admin-PC.10424.2 +3 -0
  20. special_tokens_map.json +15 -0
  21. tokenizer.json +0 -0
  22. tokenizer_config.json +15 -0
  23. training_args.bin +3 -0
  24. vocab.json +0 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,70 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ "early_stopping": true,
22
+ "encoder_attention_heads": 16,
23
+ "encoder_ffn_dim": 4096,
24
+ "encoder_layerdrop": 0.0,
25
+ "encoder_layers": 12,
26
+ "eos_token_id": 2,
27
+ "force_bos_token_to_be_generated": true,
28
+ "forced_bos_token_id": 0,
29
+ "forced_eos_token_id": 2,
30
+ "gradient_checkpointing": false,
31
+ "id2label": {
32
+ "0": "LABEL_0",
33
+ "1": "LABEL_1",
34
+ "2": "LABEL_2"
35
+ },
36
+ "init_std": 0.02,
37
+ "is_encoder_decoder": true,
38
+ "label2id": {
39
+ "LABEL_0": 0,
40
+ "LABEL_1": 1,
41
+ "LABEL_2": 2
42
+ },
43
+ "length_penalty": 2.0,
44
+ "max_length": 142,
45
+ "max_position_embeddings": 1024,
46
+ "min_length": 56,
47
+ "model_type": "bart",
48
+ "no_repeat_ngram_size": 3,
49
+ "normalize_before": false,
50
+ "num_beams": 4,
51
+ "num_hidden_layers": 12,
52
+ "output_past": true,
53
+ "pad_token_id": 1,
54
+ "prefix": " ",
55
+ "scale_embedding": false,
56
+ "task_specific_params": {
57
+ "summarization": {
58
+ "early_stopping": true,
59
+ "length_penalty": 2.0,
60
+ "max_length": 142,
61
+ "min_length": 56,
62
+ "no_repeat_ngram_size": 3,
63
+ "num_beams": 4
64
+ }
65
+ },
66
+ "torch_dtype": "float32",
67
+ "transformers_version": "4.28.1",
68
+ "use_cache": true,
69
+ "vocab_size": 50264
70
+ }
generation_config.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 0,
4
+ "decoder_start_token_id": 2,
5
+ "early_stopping": true,
6
+ "eos_token_id": 2,
7
+ "forced_bos_token_id": 0,
8
+ "forced_eos_token_id": 2,
9
+ "length_penalty": 2.0,
10
+ "max_length": 142,
11
+ "min_length": 56,
12
+ "no_repeat_ngram_size": 3,
13
+ "num_beams": 4,
14
+ "pad_token_id": 1,
15
+ "transformers_version": "4.28.1"
16
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9f17cf466a9c58bf8e5723348e473d048d285bad03acc3c5b7235af061f8128c
3
+ size 1625530125
runs/Jul30_19-45-45_admin-PC/1690739249.9119797/events.out.tfevents.1690739249.admin-PC.3556.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c5b9dcaa7e404d25c5ff149ae9f4119c7c22d31bd5202a5a820d2de333f91e31
3
+ size 5872
runs/Jul30_19-45-45_admin-PC/events.out.tfevents.1690739249.admin-PC.3556.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f671f1fde94c933114bf793deb61dc3cfbaf53e446f9b7d4b43c6f8c85f8394a
3
+ size 4982
runs/Jul30_19-59-21_admin-PC/1690739990.3639538/events.out.tfevents.1690739990.admin-PC.23004.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d9d2fa1e0116ae36fd9b598461372a150bfb75c37af663c091fe8bed63c045b
3
+ size 5872
runs/Jul30_19-59-21_admin-PC/events.out.tfevents.1690739990.admin-PC.23004.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:16a30a70533f4da20fbcb6b17fd3c51d0b2494ea1ba1b274fc5f7eb72a2c3b54
3
+ size 4982
runs/Jul30_20-03-42_admin-PC/1690740246.5559134/events.out.tfevents.1690740246.admin-PC.22948.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d0fa71af7754ee6eab30d6434f751d835a985defe2db073d8781f736d8a5c6ad
3
+ size 5872
runs/Jul30_20-03-42_admin-PC/events.out.tfevents.1690740246.admin-PC.22948.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:70575d1cfede0c16e100d5b041626b1a6fb32654cb8e9543e30fc8b88b923ae9
3
+ size 4982
runs/Jul30_20-09-02_admin-PC/1690740578.129279/events.out.tfevents.1690740578.admin-PC.21976.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ed22f0a8e20a27cde3084c950bd0be7aa671c221fcac666209b34f3e38028f39
3
+ size 5872
runs/Jul30_20-09-02_admin-PC/events.out.tfevents.1690740578.admin-PC.21976.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d806cc5de6dc23834be7a7e688154cc56da36ff0030f2ee596e45ce982ee860d
3
+ size 4982
runs/Jul30_20-12-19_admin-PC/1690740781.9373882/events.out.tfevents.1690740781.admin-PC.21088.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:41de011529af184c78d47bb2c90b3933f56ef7920267149ef2365da736454158
3
+ size 5872
runs/Jul30_20-12-19_admin-PC/events.out.tfevents.1690740781.admin-PC.21088.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b67eba1f4f79cf5f9013ebef894b3b063d65f09e0dc98f6bbae8e8c1fa15c54
3
+ size 4982
runs/Jul30_20-16-05_admin-PC/1690741067.9457467/events.out.tfevents.1690741067.admin-PC.10424.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fd83a254c6d8773d521166e8fbe83779d2499a951df95bb94f81f204b0d2c2f2
3
+ size 5872
runs/Jul30_20-16-05_admin-PC/events.out.tfevents.1690741067.admin-PC.10424.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1611e81dce318a429114ecf4f1148a5799517a431b1cdd7b744f0c30ea40cfef
3
+ size 4982
runs/Jul30_20-24-41_admin-PC/1690741511.1367981/events.out.tfevents.1690741511.admin-PC.10424.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c2a42c233cd8995d0f8f402515e22603deec8e3b58e41f98f365debe04e748ee
3
+ size 5872
runs/Jul30_20-24-41_admin-PC/events.out.tfevents.1690741511.admin-PC.10424.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b858fb1a7cd1d2bf0fba1d57d64adc68bbbb50df837260c2131d1c87178b5ae4
3
+ size 26722
special_tokens_map.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": "<s>",
3
+ "cls_token": "<s>",
4
+ "eos_token": "</s>",
5
+ "mask_token": {
6
+ "content": "<mask>",
7
+ "lstrip": true,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false
11
+ },
12
+ "pad_token": "<pad>",
13
+ "sep_token": "</s>",
14
+ "unk_token": "<unk>"
15
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "bos_token": "<s>",
4
+ "clean_up_tokenization_spaces": true,
5
+ "cls_token": "<s>",
6
+ "eos_token": "</s>",
7
+ "errors": "replace",
8
+ "mask_token": "<mask>",
9
+ "model_max_length": 1024,
10
+ "pad_token": "<pad>",
11
+ "sep_token": "</s>",
12
+ "tokenizer_class": "BartTokenizer",
13
+ "trim_offsets": true,
14
+ "unk_token": "<unk>"
15
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7add0b0366169676bfc5589f6cb57d5d0caad8c974a0ffde968cd8653683f6ec
3
+ size 3579
vocab.json ADDED
The diff for this file is too large to render. See raw diff