Ayham commited on
Commit
bf9df65
1 Parent(s): 4c8351f

Training in progress, step 1000

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,188 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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.0.dev0",
89
+ "use_bfloat16": false,
90
+ "use_cache": true,
91
+ "vocab_size": 50257
92
+ },
93
+ "decoder_start_token_id": 50256,
94
+ "early_stopping": true,
95
+ "encoder": {
96
+ "_name_or_path": "albert-base-v2",
97
+ "add_cross_attention": false,
98
+ "architectures": [
99
+ "AlbertForMaskedLM"
100
+ ],
101
+ "attention_probs_dropout_prob": 0,
102
+ "bad_words_ids": null,
103
+ "bos_token_id": 2,
104
+ "chunk_size_feed_forward": 0,
105
+ "classifier_dropout_prob": 0.1,
106
+ "cross_attention_hidden_size": null,
107
+ "decoder_start_token_id": null,
108
+ "diversity_penalty": 0.0,
109
+ "do_sample": false,
110
+ "down_scale_factor": 1,
111
+ "early_stopping": false,
112
+ "embedding_size": 128,
113
+ "encoder_no_repeat_ngram_size": 0,
114
+ "eos_token_id": 3,
115
+ "finetuning_task": null,
116
+ "forced_bos_token_id": null,
117
+ "forced_eos_token_id": null,
118
+ "gap_size": 0,
119
+ "hidden_act": "gelu_new",
120
+ "hidden_dropout_prob": 0,
121
+ "hidden_size": 768,
122
+ "id2label": {
123
+ "0": "LABEL_0",
124
+ "1": "LABEL_1"
125
+ },
126
+ "initializer_range": 0.02,
127
+ "inner_group_num": 1,
128
+ "intermediate_size": 3072,
129
+ "is_decoder": false,
130
+ "is_encoder_decoder": false,
131
+ "label2id": {
132
+ "LABEL_0": 0,
133
+ "LABEL_1": 1
134
+ },
135
+ "layer_norm_eps": 1e-12,
136
+ "length_penalty": 1.0,
137
+ "max_length": 20,
138
+ "max_position_embeddings": 512,
139
+ "min_length": 0,
140
+ "model_type": "albert",
141
+ "net_structure_type": 0,
142
+ "no_repeat_ngram_size": 0,
143
+ "num_attention_heads": 12,
144
+ "num_beam_groups": 1,
145
+ "num_beams": 1,
146
+ "num_hidden_groups": 1,
147
+ "num_hidden_layers": 12,
148
+ "num_memory_blocks": 0,
149
+ "num_return_sequences": 1,
150
+ "output_attentions": false,
151
+ "output_hidden_states": false,
152
+ "output_scores": false,
153
+ "pad_token_id": 0,
154
+ "position_embedding_type": "absolute",
155
+ "prefix": null,
156
+ "problem_type": null,
157
+ "pruned_heads": {},
158
+ "remove_invalid_values": false,
159
+ "repetition_penalty": 1.0,
160
+ "return_dict": true,
161
+ "return_dict_in_generate": false,
162
+ "sep_token_id": null,
163
+ "task_specific_params": null,
164
+ "temperature": 1.0,
165
+ "tie_encoder_decoder": false,
166
+ "tie_word_embeddings": true,
167
+ "tokenizer_class": null,
168
+ "top_k": 50,
169
+ "top_p": 1.0,
170
+ "torch_dtype": null,
171
+ "torchscript": false,
172
+ "transformers_version": "4.12.0.dev0",
173
+ "type_vocab_size": 2,
174
+ "use_bfloat16": false,
175
+ "vocab_size": 30000
176
+ },
177
+ "is_encoder_decoder": true,
178
+ "length_penalty": 2.0,
179
+ "max_length": 64,
180
+ "min_length": 56,
181
+ "model_type": "encoder-decoder",
182
+ "no_repeat_ngram_size": 3,
183
+ "num_beams": 4,
184
+ "pad_token_id": 50256,
185
+ "torch_dtype": "float32",
186
+ "transformers_version": null,
187
+ "vocab_size": 30000
188
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ed9ed36699dd002e40dd98ab3940b59f76bc1db715a957288da3622990219de
3
+ size 683252933
runs/Dec22_18-21-33_576c2a8c2e2d/1640197314.892746/events.out.tfevents.1640197314.576c2a8c2e2d.107.3 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0fb16e3daeb73c3e4c5280200611c845c7ec2c2fe73d468200a02d983c08515b
3
+ size 4811
runs/Dec22_18-21-33_576c2a8c2e2d/events.out.tfevents.1640197314.576c2a8c2e2d.107.2 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7994fb9a9aa8b43d2da3e95bc1be2e16d8e43b617837590149efa06720b01d88
3
+ size 7716
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:77f6f1addef77bbf75ebe11b7feb4253dcbb3266801fd6b6244052ea56c27084
3
+ size 2991