mountcedar
commited on
Commit
•
b95260b
1
Parent(s):
b8d6a70
Training in progress, step 500
Browse files- config.json +44 -49
- pytorch_model.bin +2 -2
- runs/Aug17_03-57-51_1162c040e07d/events.out.tfevents.1692244765.1162c040e07d.1751.0 +3 -0
- runs/Aug17_04-02-13_1162c040e07d/events.out.tfevents.1692244951.1162c040e07d.1751.1 +3 -0
- runs/Aug17_04-03-49_1162c040e07d/events.out.tfevents.1692245038.1162c040e07d.5822.0 +3 -0
- runs/Aug17_04-06-50_1162c040e07d/events.out.tfevents.1692245218.1162c040e07d.6757.0 +3 -0
- training_args.bin +1 -1
config.json
CHANGED
@@ -1,60 +1,55 @@
|
|
1 |
{
|
2 |
-
"_name_or_path": "
|
|
|
|
|
|
|
|
|
3 |
"architectures": [
|
4 |
-
"
|
5 |
],
|
6 |
-
"
|
7 |
-
"
|
8 |
-
"
|
|
|
|
|
|
|
|
|
|
|
9 |
"decoder_start_token_id": 0,
|
10 |
-
"
|
11 |
-
"
|
|
|
|
|
|
|
12 |
"eos_token_id": 1,
|
13 |
-
"
|
14 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
15 |
"is_encoder_decoder": true,
|
16 |
-
"
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
"num_decoder_layers": 6,
|
21 |
-
"num_heads": 8,
|
22 |
-
"num_layers": 6,
|
23 |
-
"output_past": true,
|
24 |
-
"pad_token_id": 0,
|
25 |
-
"relative_attention_max_distance": 128,
|
26 |
-
"relative_attention_num_buckets": 32,
|
27 |
-
"task_specific_params": {
|
28 |
-
"summarization": {
|
29 |
-
"early_stopping": true,
|
30 |
-
"length_penalty": 2.0,
|
31 |
-
"max_length": 200,
|
32 |
-
"min_length": 30,
|
33 |
-
"no_repeat_ngram_size": 3,
|
34 |
-
"num_beams": 4,
|
35 |
-
"prefix": "summarize: "
|
36 |
-
},
|
37 |
-
"translation_en_to_de": {
|
38 |
-
"early_stopping": true,
|
39 |
-
"max_length": 300,
|
40 |
-
"num_beams": 4,
|
41 |
-
"prefix": "translate English to German: "
|
42 |
-
},
|
43 |
-
"translation_en_to_fr": {
|
44 |
-
"early_stopping": true,
|
45 |
-
"max_length": 300,
|
46 |
-
"num_beams": 4,
|
47 |
-
"prefix": "translate English to French: "
|
48 |
-
},
|
49 |
-
"translation_en_to_ro": {
|
50 |
-
"early_stopping": true,
|
51 |
-
"max_length": 300,
|
52 |
-
"num_beams": 4,
|
53 |
-
"prefix": "translate English to Romanian: "
|
54 |
-
}
|
55 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
56 |
"torch_dtype": "float32",
|
57 |
"transformers_version": "4.31.0",
|
58 |
"use_cache": true,
|
59 |
-
"vocab_size":
|
60 |
}
|
|
|
1 |
{
|
2 |
+
"_name_or_path": "google/pegasus-cnn_dailymail",
|
3 |
+
"activation_dropout": 0.1,
|
4 |
+
"activation_function": "relu",
|
5 |
+
"add_bias_logits": false,
|
6 |
+
"add_final_layer_norm": true,
|
7 |
"architectures": [
|
8 |
+
"PegasusForConditionalGeneration"
|
9 |
],
|
10 |
+
"attention_dropout": 0.1,
|
11 |
+
"bos_token_id": 0,
|
12 |
+
"classif_dropout": 0.0,
|
13 |
+
"d_model": 1024,
|
14 |
+
"decoder_attention_heads": 16,
|
15 |
+
"decoder_ffn_dim": 4096,
|
16 |
+
"decoder_layerdrop": 0.0,
|
17 |
+
"decoder_layers": 16,
|
18 |
"decoder_start_token_id": 0,
|
19 |
+
"dropout": 0.1,
|
20 |
+
"encoder_attention_heads": 16,
|
21 |
+
"encoder_ffn_dim": 4096,
|
22 |
+
"encoder_layerdrop": 0.0,
|
23 |
+
"encoder_layers": 16,
|
24 |
"eos_token_id": 1,
|
25 |
+
"extra_pos_embeddings": 1,
|
26 |
+
"forced_eos_token_id": 1,
|
27 |
+
"id2label": {
|
28 |
+
"0": "LABEL_0",
|
29 |
+
"1": "LABEL_1",
|
30 |
+
"2": "LABEL_2"
|
31 |
+
},
|
32 |
+
"init_std": 0.02,
|
33 |
"is_encoder_decoder": true,
|
34 |
+
"label2id": {
|
35 |
+
"LABEL_0": 0,
|
36 |
+
"LABEL_1": 1,
|
37 |
+
"LABEL_2": 2
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
38 |
},
|
39 |
+
"length_penalty": 0.8,
|
40 |
+
"max_length": 128,
|
41 |
+
"max_position_embeddings": 1024,
|
42 |
+
"min_length": 32,
|
43 |
+
"model_type": "pegasus",
|
44 |
+
"normalize_before": true,
|
45 |
+
"normalize_embedding": false,
|
46 |
+
"num_beams": 8,
|
47 |
+
"num_hidden_layers": 16,
|
48 |
+
"pad_token_id": 0,
|
49 |
+
"scale_embedding": true,
|
50 |
+
"static_position_embeddings": true,
|
51 |
"torch_dtype": "float32",
|
52 |
"transformers_version": "4.31.0",
|
53 |
"use_cache": true,
|
54 |
+
"vocab_size": 96103
|
55 |
}
|
pytorch_model.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:cd8a9154e65069cc4dddc88f1e79caaede8e92d5ed41952fdf937bafc64526a2
|
3 |
+
size 2283804653
|
runs/Aug17_03-57-51_1162c040e07d/events.out.tfevents.1692244765.1162c040e07d.1751.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:64d1eef3a3982a6d732178815aa95c95d339d034dc8276340b20fb8c48869afa
|
3 |
+
size 4862
|
runs/Aug17_04-02-13_1162c040e07d/events.out.tfevents.1692244951.1162c040e07d.1751.1
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:835ebd9f040c9c8bc5f7e0fa5c4ebcc0e80645104bead389b57599e23819ac05
|
3 |
+
size 4184
|
runs/Aug17_04-03-49_1162c040e07d/events.out.tfevents.1692245038.1162c040e07d.5822.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:534d312a804235a0f17f991bcdf28068f3d43be27232bc2375246a4f58d0c4ed
|
3 |
+
size 4184
|
runs/Aug17_04-06-50_1162c040e07d/events.out.tfevents.1692245218.1162c040e07d.6757.0
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:8ed39d47681c880b525cbe5b8b7d0ab08f5da3e16a0d32dc7635d69f9e0cd853
|
3 |
+
size 5017
|
training_args.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 4091
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:e6e10716ad5be60585c81b027eba536985aa2b26e7bc927d11542b3d31e0474d
|
3 |
size 4091
|