mehnaazasad
commited on
Commit
•
5950d38
1
Parent(s):
4d3e06a
Training in progress, step 500
Browse files- .gitignore +1 -0
- config.json +74 -0
- merges.txt +0 -0
- pytorch_model.bin +3 -0
- runs/Jun02_22-57-37_bba5f1e87ffa/1685747491.0329716/events.out.tfevents.1685747491.bba5f1e87ffa.12582.1 +3 -0
- runs/Jun02_22-57-37_bba5f1e87ffa/events.out.tfevents.1685747491.bba5f1e87ffa.12582.0 +3 -0
- runs/Jun02_23-16-31_bba5f1e87ffa/1685747800.1552844/events.out.tfevents.1685747800.bba5f1e87ffa.12582.3 +3 -0
- runs/Jun02_23-16-31_bba5f1e87ffa/events.out.tfevents.1685747800.bba5f1e87ffa.12582.2 +3 -0
- runs/Jun02_23-23-53_bba5f1e87ffa/1685748246.0243216/events.out.tfevents.1685748246.bba5f1e87ffa.12582.5 +3 -0
- runs/Jun02_23-23-53_bba5f1e87ffa/1685749280.46696/events.out.tfevents.1685749280.bba5f1e87ffa.12582.6 +3 -0
- runs/Jun02_23-23-53_bba5f1e87ffa/events.out.tfevents.1685748246.bba5f1e87ffa.12582.4 +3 -0
- runs/Jun02_23-50-33_bba5f1e87ffa/1685749839.0625923/events.out.tfevents.1685749839.bba5f1e87ffa.32043.1 +3 -0
- runs/Jun02_23-50-33_bba5f1e87ffa/events.out.tfevents.1685749839.bba5f1e87ffa.32043.0 +3 -0
- special_tokens_map.json +15 -0
- tokenizer.json +0 -0
- tokenizer_config.json +15 -0
- training_args.bin +3 -0
- 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-large",
|
3 |
+
"activation_dropout": 0.1,
|
4 |
+
"activation_function": "gelu",
|
5 |
+
"add_bias_logits": false,
|
6 |
+
"add_final_layer_norm": false,
|
7 |
+
"architectures": [
|
8 |
+
"BartForConditionalGeneration"
|
9 |
+
],
|
10 |
+
"attention_dropout": 0.1,
|
11 |
+
"bos_token_id": 0,
|
12 |
+
"classif_dropout": 0.1,
|
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 |
+
"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 |
+
"max_position_embeddings": 1024,
|
43 |
+
"model_type": "bart",
|
44 |
+
"no_repeat_ngram_size": 3,
|
45 |
+
"normalize_before": false,
|
46 |
+
"num_beams": 4,
|
47 |
+
"num_hidden_layers": 12,
|
48 |
+
"pad_token_id": 1,
|
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.29.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:e8e98816cc451a992cbb699cda44ff68883fd58c6960905bb4b7957d12ace068
|
3 |
+
size 1625541389
|
runs/Jun02_22-57-37_bba5f1e87ffa/1685747491.0329716/events.out.tfevents.1685747491.bba5f1e87ffa.12582.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:69b67340c2812f2098ba8bb79e7a2ca3e6f123956f84ece6e9075ff017f9c762
|
3 |
+
size 6246
|
runs/Jun02_22-57-37_bba5f1e87ffa/events.out.tfevents.1685747491.bba5f1e87ffa.12582.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ddfd6a68a4ea6f500ffec442a0157d0ef8f17da49ed93202277921b98b87eebe
|
3 |
+
size 5238
|
runs/Jun02_23-16-31_bba5f1e87ffa/1685747800.1552844/events.out.tfevents.1685747800.bba5f1e87ffa.12582.3
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:37dae6d90426567730abe0e2f930efd5e0c2fae1794fe76ba3041defbd3b5a58
|
3 |
+
size 6246
|
runs/Jun02_23-16-31_bba5f1e87ffa/events.out.tfevents.1685747800.bba5f1e87ffa.12582.2
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:81bffd370e5542205c46a199b8b48d3b8675ae6eee73b9fa810d3120846e07f7
|
3 |
+
size 5236
|
runs/Jun02_23-23-53_bba5f1e87ffa/1685748246.0243216/events.out.tfevents.1685748246.bba5f1e87ffa.12582.5
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:4b0bb6cc5b0827ea5651e3f4645c51987bb3987f5e034ae66e44858543f1e988
|
3 |
+
size 6246
|
runs/Jun02_23-23-53_bba5f1e87ffa/1685749280.46696/events.out.tfevents.1685749280.bba5f1e87ffa.12582.6
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:338b09c9c6d8f8e9d9c7ee0134d738a51daa5370b187182f8d139057db7ef3c5
|
3 |
+
size 6246
|
runs/Jun02_23-23-53_bba5f1e87ffa/events.out.tfevents.1685748246.bba5f1e87ffa.12582.4
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ecac3fbb5e104ee587117e3121caa47e00b40be3f51c8e7b0afd94832cbbb1fd
|
3 |
+
size 10384
|
runs/Jun02_23-50-33_bba5f1e87ffa/1685749839.0625923/events.out.tfevents.1685749839.bba5f1e87ffa.32043.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6ec2cd0541f8cb39b00a07812fea48c7a55df64035073d23027a72a40848d844
|
3 |
+
size 6246
|
runs/Jun02_23-50-33_bba5f1e87ffa/events.out.tfevents.1685749839.bba5f1e87ffa.32043.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:135692356d5c577512a96e22abc3e5b7659e060a25ecf8fdcab2311a2d4c93d3
|
3 |
+
size 5393
|
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:b31e9279eee4832503bfad9d96d407ecda607cd0126db3e6175880e229885054
|
3 |
+
size 4091
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|