tobijen commited on
Commit
f9b635a
1 Parent(s): 008d39d

End of training

Browse files
config.json CHANGED
@@ -1,46 +1,125 @@
1
  {
2
- "_name_or_path": "distilgpt2",
3
- "_num_labels": 1,
4
- "activation_function": "gelu_new",
 
 
5
  "architectures": [
6
- "GPT2LMHeadModel"
7
  ],
8
- "attn_pdrop": 0.1,
9
- "bos_token_id": 50256,
10
- "embd_pdrop": 0.1,
11
- "eos_token_id": 50256,
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
12
  "id2label": {
13
- "0": "LABEL_0"
 
 
14
  },
15
- "initializer_range": 0.02,
 
 
16
  "label2id": {
17
- "LABEL_0": 0
 
 
18
  },
19
- "layer_norm_epsilon": 1e-05,
20
- "model_type": "gpt2",
21
- "n_ctx": 1024,
22
- "n_embd": 768,
23
- "n_head": 12,
24
- "n_inner": null,
25
- "n_layer": 6,
26
- "n_positions": 1024,
27
- "reorder_and_upcast_attn": false,
28
- "resid_pdrop": 0.1,
29
- "scale_attn_by_inverse_layer_idx": false,
30
- "scale_attn_weights": true,
31
- "summary_activation": null,
32
- "summary_first_dropout": 0.1,
33
- "summary_proj_to_labels": true,
34
- "summary_type": "cls_index",
35
- "summary_use_proj": true,
36
  "task_specific_params": {
37
- "text-generation": {
38
- "do_sample": true,
39
- "max_length": 50
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
40
  }
41
  },
42
  "torch_dtype": "float32",
43
- "transformers_version": "4.29.2",
44
  "use_cache": true,
45
- "vocab_size": 50257
46
  }
 
1
  {
2
+ "_name_or_path": "google/pegasus-large",
3
+ "activation_dropout": 0.1,
4
+ "activation_function": "relu",
5
+ "add_bias_logits": false,
6
+ "add_final_layer_norm": true,
7
  "architectures": [
8
+ "PegasusForCausalLM"
9
  ],
10
+ "attention_dropout": 0.1,
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": 16,
19
+ "decoder_start_token_id": 0,
20
+ "dropout": 0.1,
21
+ "encoder_attention_heads": 16,
22
+ "encoder_ffn_dim": 4096,
23
+ "encoder_layerdrop": 0.0,
24
+ "encoder_layers": 16,
25
+ "eos_token_id": 1,
26
+ "extra_pos_embeddings": 1,
27
+ "force_bos_token_to_be_generated": false,
28
+ "forced_eos_token_id": 1,
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_decoder": true,
37
+ "is_encoder_decoder": false,
38
  "label2id": {
39
+ "LABEL_0": 0,
40
+ "LABEL_1": 1,
41
+ "LABEL_2": 2
42
  },
43
+ "length_penalty": 0.8,
44
+ "max_length": 256,
45
+ "max_position_embeddings": 1024,
46
+ "model_type": "pegasus",
47
+ "normalize_before": true,
48
+ "normalize_embedding": false,
49
+ "num_beams": 8,
50
+ "num_hidden_layers": 16,
51
+ "pad_token_id": 0,
52
+ "scale_embedding": true,
53
+ "static_position_embeddings": true,
 
 
 
 
 
 
54
  "task_specific_params": {
55
+ "summarization_aeslc": {
56
+ "length_penalty": 0.6,
57
+ "max_length": 32,
58
+ "max_position_embeddings": 512
59
+ },
60
+ "summarization_arxiv": {
61
+ "length_penalty": 0.8,
62
+ "max_length": 256,
63
+ "max_position_embeddings": 1024
64
+ },
65
+ "summarization_big_patent": {
66
+ "length_penalty": 0.7,
67
+ "max_length": 256,
68
+ "max_position_embeddings": 1024
69
+ },
70
+ "summarization_billsum": {
71
+ "length_penalty": 0.6,
72
+ "max_length": 256,
73
+ "max_position_embeddings": 1024
74
+ },
75
+ "summarization_cnn_dailymail": {
76
+ "length_penalty": 0.8,
77
+ "max_length": 128,
78
+ "max_position_embeddings": 1024
79
+ },
80
+ "summarization_gigaword": {
81
+ "length_penalty": 0.6,
82
+ "max_length": 32,
83
+ "max_position_embeddings": 128
84
+ },
85
+ "summarization_large": {
86
+ "length_penalty": 0.8,
87
+ "max_length": 256,
88
+ "max_position_embeddings": 1024
89
+ },
90
+ "summarization_multi_news": {
91
+ "length_penalty": 0.8,
92
+ "max_length": 256,
93
+ "max_position_embeddings": 1024
94
+ },
95
+ "summarization_newsroom": {
96
+ "length_penalty": 0.8,
97
+ "max_length": 128,
98
+ "max_position_embeddings": 512
99
+ },
100
+ "summarization_pubmed": {
101
+ "length_penalty": 0.8,
102
+ "max_length": 256,
103
+ "max_position_embeddings": 1024
104
+ },
105
+ "summarization_reddit_tifu": {
106
+ "length_penalty": 0.6,
107
+ "max_length": 128,
108
+ "max_position_embeddings": 512
109
+ },
110
+ "summarization_wikihow": {
111
+ "length_penalty": 0.6,
112
+ "max_length": 256,
113
+ "max_position_embeddings": 512
114
+ },
115
+ "summarization_xsum": {
116
+ "length_penalty": 0.8,
117
+ "max_length": 64,
118
+ "max_position_embeddings": 512
119
  }
120
  },
121
  "torch_dtype": "float32",
122
+ "transformers_version": "4.31.0",
123
  "use_cache": true,
124
+ "vocab_size": 96103
125
  }
generation_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 0,
4
+ "decoder_start_token_id": 0,
5
+ "eos_token_id": 1,
6
+ "forced_eos_token_id": 1,
7
+ "length_penalty": 0.8,
8
+ "max_length": 256,
9
+ "num_beams": 8,
10
+ "pad_token_id": 0,
11
+ "transformers_version": "4.31.0"
12
+ }
pytorch_model.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:3777080b4d69c47384aab78127e3e187377aa89f4a57e0cf1b62ad101d75208f
3
- size 333968953
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10ebe5ce862a0ba17cbedb248d92386d2f17d732e17f0e7a4dffc6cf087e6f34
3
+ size 1472964957
runs/Jul21_11-35-28_8a5d8c305df6/events.out.tfevents.1689939442.8a5d8c305df6.3089.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4f6befa565ae1c1edb678642888be7764914a3f4ae0bb66d897798f45d46a108
3
+ size 7703
runs/Jul21_11-35-28_8a5d8c305df6/events.out.tfevents.1689942154.8a5d8c305df6.3089.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ffaabffb2b90ae3302edd89d4c00482a522cc88f236f40f857dd5fc79c03a555
3
+ size 359
training_args.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9e4fbe20c61d75365a151aa81a6ab92082cfdafdcf6ee83c74ffded332f35df4
3
  size 3963
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb09544545456011ee4fa022a4ed05179c16dc38efba42496fef15755a44c3a6
3
  size 3963