Ayham commited on
Commit
02fcdb0
1 Parent(s): b358e9c

end_of_training

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,192 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "EncoderDecoderModel"
4
+ ],
5
+ "decoder": {
6
+ "_name_or_path": "gpt2",
7
+ "activation_function": "gelu_new",
8
+ "add_cross_attention": true,
9
+ "architectures": [
10
+ "GPT2LMHeadModel"
11
+ ],
12
+ "attn_pdrop": 0.1,
13
+ "bad_words_ids": null,
14
+ "bos_token_id": 50256,
15
+ "chunk_size_feed_forward": 0,
16
+ "cross_attention_hidden_size": null,
17
+ "decoder_start_token_id": null,
18
+ "diversity_penalty": 0.0,
19
+ "do_sample": false,
20
+ "early_stopping": false,
21
+ "embd_pdrop": 0.1,
22
+ "encoder_no_repeat_ngram_size": 0,
23
+ "eos_token_id": 50256,
24
+ "finetuning_task": null,
25
+ "forced_bos_token_id": null,
26
+ "forced_eos_token_id": null,
27
+ "id2label": {
28
+ "0": "LABEL_0",
29
+ "1": "LABEL_1"
30
+ },
31
+ "initializer_range": 0.02,
32
+ "is_decoder": true,
33
+ "is_encoder_decoder": false,
34
+ "label2id": {
35
+ "LABEL_0": 0,
36
+ "LABEL_1": 1
37
+ },
38
+ "layer_norm_epsilon": 1e-05,
39
+ "length_penalty": 1.0,
40
+ "max_length": 20,
41
+ "min_length": 0,
42
+ "model_type": "gpt2",
43
+ "n_ctx": 1024,
44
+ "n_embd": 768,
45
+ "n_head": 12,
46
+ "n_inner": null,
47
+ "n_layer": 12,
48
+ "n_positions": 1024,
49
+ "no_repeat_ngram_size": 0,
50
+ "num_beam_groups": 1,
51
+ "num_beams": 1,
52
+ "num_return_sequences": 1,
53
+ "output_attentions": false,
54
+ "output_hidden_states": false,
55
+ "output_scores": false,
56
+ "pad_token_id": null,
57
+ "prefix": null,
58
+ "problem_type": null,
59
+ "pruned_heads": {},
60
+ "remove_invalid_values": false,
61
+ "reorder_and_upcast_attn": false,
62
+ "repetition_penalty": 1.0,
63
+ "resid_pdrop": 0.1,
64
+ "return_dict": true,
65
+ "return_dict_in_generate": false,
66
+ "scale_attn_by_inverse_layer_idx": false,
67
+ "scale_attn_weights": true,
68
+ "sep_token_id": null,
69
+ "summary_activation": null,
70
+ "summary_first_dropout": 0.1,
71
+ "summary_proj_to_labels": true,
72
+ "summary_type": "cls_index",
73
+ "summary_use_proj": true,
74
+ "task_specific_params": {
75
+ "text-generation": {
76
+ "do_sample": true,
77
+ "max_length": 50
78
+ }
79
+ },
80
+ "temperature": 1.0,
81
+ "tie_encoder_decoder": false,
82
+ "tie_word_embeddings": true,
83
+ "tokenizer_class": null,
84
+ "top_k": 50,
85
+ "top_p": 1.0,
86
+ "torch_dtype": null,
87
+ "torchscript": false,
88
+ "transformers_version": "4.12.5",
89
+ "use_bfloat16": false,
90
+ "use_cache": false,
91
+ "vocab_size": 50257
92
+ },
93
+ "decoder_start_token_id": 50256,
94
+ "encoder": {
95
+ "_name_or_path": "xlnet-base-cased",
96
+ "add_cross_attention": false,
97
+ "architectures": [
98
+ "XLNetLMHeadModel"
99
+ ],
100
+ "attn_type": "bi",
101
+ "bad_words_ids": null,
102
+ "bi_data": false,
103
+ "bos_token_id": 1,
104
+ "chunk_size_feed_forward": 0,
105
+ "clamp_len": -1,
106
+ "cross_attention_hidden_size": null,
107
+ "d_head": 64,
108
+ "d_inner": 3072,
109
+ "d_model": 768,
110
+ "decoder_start_token_id": null,
111
+ "diversity_penalty": 0.0,
112
+ "do_sample": false,
113
+ "dropout": 0.1,
114
+ "early_stopping": false,
115
+ "encoder_no_repeat_ngram_size": 0,
116
+ "end_n_top": 5,
117
+ "eos_token_id": 2,
118
+ "ff_activation": "gelu",
119
+ "finetuning_task": null,
120
+ "forced_bos_token_id": null,
121
+ "forced_eos_token_id": null,
122
+ "id2label": {
123
+ "0": "LABEL_0",
124
+ "1": "LABEL_1"
125
+ },
126
+ "initializer_range": 0.02,
127
+ "is_decoder": false,
128
+ "is_encoder_decoder": false,
129
+ "label2id": {
130
+ "LABEL_0": 0,
131
+ "LABEL_1": 1
132
+ },
133
+ "layer_norm_eps": 1e-12,
134
+ "length_penalty": 1.0,
135
+ "max_length": 20,
136
+ "mem_len": null,
137
+ "min_length": 0,
138
+ "model_type": "xlnet",
139
+ "n_head": 12,
140
+ "n_layer": 12,
141
+ "no_repeat_ngram_size": 0,
142
+ "num_beam_groups": 1,
143
+ "num_beams": 1,
144
+ "num_return_sequences": 1,
145
+ "output_attentions": false,
146
+ "output_hidden_states": false,
147
+ "output_scores": false,
148
+ "pad_token_id": 5,
149
+ "prefix": null,
150
+ "problem_type": null,
151
+ "pruned_heads": {},
152
+ "remove_invalid_values": false,
153
+ "repetition_penalty": 1.0,
154
+ "return_dict": true,
155
+ "return_dict_in_generate": false,
156
+ "reuse_len": null,
157
+ "same_length": false,
158
+ "sep_token_id": null,
159
+ "start_n_top": 5,
160
+ "summary_activation": "tanh",
161
+ "summary_last_dropout": 0.1,
162
+ "summary_type": "last",
163
+ "summary_use_proj": true,
164
+ "task_specific_params": {
165
+ "text-generation": {
166
+ "do_sample": true,
167
+ "max_length": 250
168
+ }
169
+ },
170
+ "temperature": 1.0,
171
+ "tie_encoder_decoder": false,
172
+ "tie_word_embeddings": true,
173
+ "tokenizer_class": null,
174
+ "top_k": 50,
175
+ "top_p": 1.0,
176
+ "torch_dtype": null,
177
+ "torchscript": false,
178
+ "transformers_version": "4.12.5",
179
+ "untie_r": true,
180
+ "use_bfloat16": false,
181
+ "use_mems_eval": true,
182
+ "use_mems_train": false,
183
+ "vocab_size": 32000
184
+ },
185
+ "eos_token_id": 50256,
186
+ "is_encoder_decoder": true,
187
+ "max_length": 64,
188
+ "model_type": "encoder-decoder",
189
+ "no_repeat_ngram_size": 3,
190
+ "torch_dtype": "float32",
191
+ "transformers_version": null
192
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cbd8d55000a5e6c2b709c7ad4b3fc4dc572dd84b634c67565da00a012828592e
3
+ size 1103449693
runs/Dec05_16-55-59_00d6252c7aa7/1638723401.4673069/events.out.tfevents.1638723401.00d6252c7aa7.1269.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6e7c4843926add57d9cfb0943f49509eb8aea5a4b72a354c0a067aa7f45ff60a
3
+ size 4513
runs/Dec05_16-55-59_00d6252c7aa7/events.out.tfevents.1638723401.00d6252c7aa7.1269.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d1ea00a74771f78b637f67281287067aa6d4caf88260e82a1bf3761da7f3399
3
+ size 23542
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9620a8b89b069e1796b4d4d788ee28826672767dc385450254bbc2a6d1c49bc5
3
+ size 2863