VitaliiVrublevskyi commited on
Commit
d61d24d
1 Parent(s): 4c02090

Training in progress, epoch 1

Browse files
Files changed (23) hide show
  1. .gitignore +1 -0
  2. config.json +74 -0
  3. merges.txt +0 -0
  4. pytorch_model.bin +3 -0
  5. runs/Sep24_11-44-55_8bface9464db/1695555900.4897594/events.out.tfevents.1695555900.8bface9464db.983.23 +3 -0
  6. runs/Sep24_11-44-55_8bface9464db/events.out.tfevents.1695555900.8bface9464db.983.22 +3 -0
  7. runs/Sep24_12-00-23_8bface9464db/1695556826.0723648/events.out.tfevents.1695556826.8bface9464db.983.25 +3 -0
  8. runs/Sep24_12-00-23_8bface9464db/events.out.tfevents.1695556826.8bface9464db.983.24 +3 -0
  9. runs/Sep24_12-09-10_8bface9464db/1695557352.6686065/events.out.tfevents.1695557352.8bface9464db.983.27 +3 -0
  10. runs/Sep24_12-09-10_8bface9464db/events.out.tfevents.1695557352.8bface9464db.983.26 +3 -0
  11. runs/Sep24_12-11-27_8bface9464db/1695557489.602832/events.out.tfevents.1695557489.8bface9464db.983.29 +3 -0
  12. runs/Sep24_12-11-27_8bface9464db/events.out.tfevents.1695557489.8bface9464db.983.28 +3 -0
  13. runs/Sep24_12-18-35_8bface9464db/1695557917.5858703/events.out.tfevents.1695557917.8bface9464db.983.31 +3 -0
  14. runs/Sep24_12-18-35_8bface9464db/events.out.tfevents.1695557917.8bface9464db.983.30 +3 -0
  15. runs/Sep24_12-24-13_8bface9464db/1695558255.6399655/events.out.tfevents.1695558255.8bface9464db.983.33 +3 -0
  16. runs/Sep24_12-24-13_8bface9464db/events.out.tfevents.1695558255.8bface9464db.983.32 +3 -0
  17. runs/Sep24_12-36-25_8bface9464db/1695558987.865913/events.out.tfevents.1695558987.8bface9464db.983.35 +3 -0
  18. runs/Sep24_12-36-25_8bface9464db/events.out.tfevents.1695558987.8bface9464db.983.34 +3 -0
  19. special_tokens_map.json +15 -0
  20. tokenizer.json +0 -0
  21. tokenizer_config.json +15 -0
  22. training_args.bin +3 -0
  23. vocab.json +0 -0
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,74 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "facebook/bart-base",
3
+ "activation_dropout": 0.1,
4
+ "activation_function": "gelu",
5
+ "add_bias_logits": false,
6
+ "add_final_layer_norm": false,
7
+ "architectures": [
8
+ "BartForSequenceClassification"
9
+ ],
10
+ "attention_dropout": 0.1,
11
+ "bos_token_id": 0,
12
+ "classif_dropout": 0.1,
13
+ "classifier_dropout": 0.0,
14
+ "d_model": 768,
15
+ "decoder_attention_heads": 12,
16
+ "decoder_ffn_dim": 3072,
17
+ "decoder_layerdrop": 0.0,
18
+ "decoder_layers": 6,
19
+ "decoder_start_token_id": 2,
20
+ "dropout": 0.1,
21
+ "early_stopping": true,
22
+ "encoder_attention_heads": 12,
23
+ "encoder_ffn_dim": 3072,
24
+ "encoder_layerdrop": 0.0,
25
+ "encoder_layers": 6,
26
+ "eos_token_id": 2,
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
+ },
34
+ "init_std": 0.02,
35
+ "is_encoder_decoder": true,
36
+ "label2id": {
37
+ "LABEL_0": 0,
38
+ "LABEL_1": 1
39
+ },
40
+ "max_position_embeddings": 1024,
41
+ "model_type": "bart",
42
+ "no_repeat_ngram_size": 3,
43
+ "normalize_before": false,
44
+ "normalize_embedding": true,
45
+ "num_beams": 4,
46
+ "num_hidden_layers": 6,
47
+ "pad_token_id": 1,
48
+ "problem_type": "single_label_classification",
49
+ "scale_embedding": false,
50
+ "task_specific_params": {
51
+ "summarization": {
52
+ "length_penalty": 1.0,
53
+ "max_length": 128,
54
+ "min_length": 12,
55
+ "num_beams": 4
56
+ },
57
+ "summarization_cnn": {
58
+ "length_penalty": 2.0,
59
+ "max_length": 142,
60
+ "min_length": 56,
61
+ "num_beams": 4
62
+ },
63
+ "summarization_xsum": {
64
+ "length_penalty": 1.0,
65
+ "max_length": 62,
66
+ "min_length": 11,
67
+ "num_beams": 6
68
+ }
69
+ },
70
+ "torch_dtype": "float32",
71
+ "transformers_version": "4.28.0",
72
+ "use_cache": true,
73
+ "vocab_size": 50265
74
+ }
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:0e4faf73766979c47dc11144aacbd9aff18e20d03355e9f7fe7c29a002335653
3
+ size 560139561
runs/Sep24_11-44-55_8bface9464db/1695555900.4897594/events.out.tfevents.1695555900.8bface9464db.983.23 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:30839c7f0742c4a9a61933216c38b95a9d1dda85e421a7292a0727b37218efac
3
+ size 5898
runs/Sep24_11-44-55_8bface9464db/events.out.tfevents.1695555900.8bface9464db.983.22 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9233dad5e040783ccc903e409c98d07e4c6527149d7a0887f507a3ddb2d587c6
3
+ size 5058
runs/Sep24_12-00-23_8bface9464db/1695556826.0723648/events.out.tfevents.1695556826.8bface9464db.983.25 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:268288fc2a117daeb72b271c0f8fbcf9b13b762630a80d9bb568401a50630f91
3
+ size 5898
runs/Sep24_12-00-23_8bface9464db/events.out.tfevents.1695556826.8bface9464db.983.24 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b3ea224a3d72927b044eeab8fb6697de7dae35ab4045c07e0e0a5b850faef257
3
+ size 5058
runs/Sep24_12-09-10_8bface9464db/1695557352.6686065/events.out.tfevents.1695557352.8bface9464db.983.27 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3aa29a0a378a4c00c61ef9e8438cba8af39881ca1aef3ad268ecf6ba32f45dc5
3
+ size 5898
runs/Sep24_12-09-10_8bface9464db/events.out.tfevents.1695557352.8bface9464db.983.26 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f30798a7bf4fddf46cd94c668d6d0019cab5bdb2b0ea088d3bb31fde13f16c9
3
+ size 5058
runs/Sep24_12-11-27_8bface9464db/1695557489.602832/events.out.tfevents.1695557489.8bface9464db.983.29 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d881a335314fd338719872062c6700a6e73930e0ab9553cee6eca73aa8b79882
3
+ size 5898
runs/Sep24_12-11-27_8bface9464db/events.out.tfevents.1695557489.8bface9464db.983.28 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7e3f08913d884c23bcfdd731822c5dae9642cea061a84f7aa3f84d45ac4f6818
3
+ size 5058
runs/Sep24_12-18-35_8bface9464db/1695557917.5858703/events.out.tfevents.1695557917.8bface9464db.983.31 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e04ad6dd5a9b27515162fd26746277206824eb6d3ce404d98d72f6f13f1a9b5
3
+ size 5898
runs/Sep24_12-18-35_8bface9464db/events.out.tfevents.1695557917.8bface9464db.983.30 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74faf8d17e57407603a83132f91db52f653d719183c33056f8c9900ce64ec667
3
+ size 5057
runs/Sep24_12-24-13_8bface9464db/1695558255.6399655/events.out.tfevents.1695558255.8bface9464db.983.33 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1e4a40ab4b4f655a2487418fec34e1f1a6837293aa73bb24c3504165015f6935
3
+ size 5898
runs/Sep24_12-24-13_8bface9464db/events.out.tfevents.1695558255.8bface9464db.983.32 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9c1fc7e30d2493ed32c1d81a8f8b3768c13070b559f4e84645598b3bfb64dd61
3
+ size 5058
runs/Sep24_12-36-25_8bface9464db/1695558987.865913/events.out.tfevents.1695558987.8bface9464db.983.35 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:08a366f17d85a437f087862edc697fe507e6a3ce4c1617d971b918d2b7a3d66e
3
+ size 5898
runs/Sep24_12-36-25_8bface9464db/events.out.tfevents.1695558987.8bface9464db.983.34 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f1a8920b636eef4f791aed0b9bc679eebce1742133f0e6a9d1e53293a091f3d9
3
+ size 5420
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:a58b96fb4bc3fe4cfad9117ba47eaf4fea0ccd69427a271828ead00614ebaa5d
3
+ size 3643
vocab.json ADDED
The diff for this file is too large to render. See raw diff