Ayham commited on
Commit
2ec2199
1 Parent(s): 4de5b7b

Training in progress, step 1000

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,181 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "EncoderDecoderModel"
4
+ ],
5
+ "decoder": {
6
+ "_name_or_path": "distilgpt2",
7
+ "_num_labels": 1,
8
+ "activation_function": "gelu_new",
9
+ "add_cross_attention": true,
10
+ "architectures": [
11
+ "GPT2LMHeadModel"
12
+ ],
13
+ "attn_pdrop": 0.1,
14
+ "bad_words_ids": null,
15
+ "bos_token_id": 50256,
16
+ "chunk_size_feed_forward": 0,
17
+ "cross_attention_hidden_size": null,
18
+ "decoder_start_token_id": null,
19
+ "diversity_penalty": 0.0,
20
+ "do_sample": false,
21
+ "early_stopping": false,
22
+ "embd_pdrop": 0.1,
23
+ "encoder_no_repeat_ngram_size": 0,
24
+ "eos_token_id": 50256,
25
+ "finetuning_task": null,
26
+ "forced_bos_token_id": null,
27
+ "forced_eos_token_id": null,
28
+ "id2label": {
29
+ "0": "LABEL_0"
30
+ },
31
+ "initializer_range": 0.02,
32
+ "is_decoder": true,
33
+ "is_encoder_decoder": false,
34
+ "label2id": {
35
+ "LABEL_0": 0
36
+ },
37
+ "layer_norm_epsilon": 1e-05,
38
+ "length_penalty": 1.0,
39
+ "max_length": 20,
40
+ "min_length": 0,
41
+ "model_type": "gpt2",
42
+ "n_ctx": 1024,
43
+ "n_embd": 768,
44
+ "n_head": 12,
45
+ "n_inner": null,
46
+ "n_layer": 6,
47
+ "n_positions": 1024,
48
+ "no_repeat_ngram_size": 0,
49
+ "num_beam_groups": 1,
50
+ "num_beams": 1,
51
+ "num_return_sequences": 1,
52
+ "output_attentions": false,
53
+ "output_hidden_states": false,
54
+ "output_scores": false,
55
+ "pad_token_id": null,
56
+ "prefix": null,
57
+ "problem_type": null,
58
+ "pruned_heads": {},
59
+ "remove_invalid_values": false,
60
+ "reorder_and_upcast_attn": false,
61
+ "repetition_penalty": 1.0,
62
+ "resid_pdrop": 0.1,
63
+ "return_dict": true,
64
+ "return_dict_in_generate": false,
65
+ "scale_attn_by_inverse_layer_idx": false,
66
+ "scale_attn_weights": true,
67
+ "sep_token_id": null,
68
+ "summary_activation": null,
69
+ "summary_first_dropout": 0.1,
70
+ "summary_proj_to_labels": true,
71
+ "summary_type": "cls_index",
72
+ "summary_use_proj": true,
73
+ "task_specific_params": {
74
+ "text-generation": {
75
+ "do_sample": true,
76
+ "max_length": 50
77
+ }
78
+ },
79
+ "temperature": 1.0,
80
+ "tie_encoder_decoder": false,
81
+ "tie_word_embeddings": true,
82
+ "tokenizer_class": null,
83
+ "top_k": 50,
84
+ "top_p": 1.0,
85
+ "torch_dtype": null,
86
+ "torchscript": false,
87
+ "transformers_version": "4.16.2",
88
+ "use_bfloat16": false,
89
+ "use_cache": true,
90
+ "vocab_size": 50257
91
+ },
92
+ "decoder_start_token_id": 50256,
93
+ "early_stopping": true,
94
+ "encoder": {
95
+ "_name_or_path": "roberta-base",
96
+ "add_cross_attention": false,
97
+ "architectures": [
98
+ "RobertaForMaskedLM"
99
+ ],
100
+ "attention_probs_dropout_prob": 0.1,
101
+ "bad_words_ids": null,
102
+ "bos_token_id": 0,
103
+ "chunk_size_feed_forward": 0,
104
+ "classifier_dropout": null,
105
+ "cross_attention_hidden_size": null,
106
+ "decoder_start_token_id": null,
107
+ "diversity_penalty": 0.0,
108
+ "do_sample": false,
109
+ "early_stopping": false,
110
+ "encoder_no_repeat_ngram_size": 0,
111
+ "eos_token_id": 2,
112
+ "finetuning_task": null,
113
+ "forced_bos_token_id": null,
114
+ "forced_eos_token_id": null,
115
+ "hidden_act": "gelu",
116
+ "hidden_dropout_prob": 0.1,
117
+ "hidden_size": 768,
118
+ "id2label": {
119
+ "0": "LABEL_0",
120
+ "1": "LABEL_1"
121
+ },
122
+ "initializer_range": 0.02,
123
+ "intermediate_size": 3072,
124
+ "is_decoder": false,
125
+ "is_encoder_decoder": false,
126
+ "label2id": {
127
+ "LABEL_0": 0,
128
+ "LABEL_1": 1
129
+ },
130
+ "layer_norm_eps": 1e-05,
131
+ "length_penalty": 1.0,
132
+ "max_length": 20,
133
+ "max_position_embeddings": 514,
134
+ "min_length": 0,
135
+ "model_type": "roberta",
136
+ "no_repeat_ngram_size": 0,
137
+ "num_attention_heads": 12,
138
+ "num_beam_groups": 1,
139
+ "num_beams": 1,
140
+ "num_hidden_layers": 12,
141
+ "num_return_sequences": 1,
142
+ "output_attentions": false,
143
+ "output_hidden_states": false,
144
+ "output_scores": false,
145
+ "pad_token_id": 1,
146
+ "position_embedding_type": "absolute",
147
+ "prefix": null,
148
+ "problem_type": null,
149
+ "pruned_heads": {},
150
+ "remove_invalid_values": false,
151
+ "repetition_penalty": 1.0,
152
+ "return_dict": true,
153
+ "return_dict_in_generate": false,
154
+ "sep_token_id": null,
155
+ "task_specific_params": null,
156
+ "temperature": 1.0,
157
+ "tie_encoder_decoder": false,
158
+ "tie_word_embeddings": true,
159
+ "tokenizer_class": null,
160
+ "top_k": 50,
161
+ "top_p": 1.0,
162
+ "torch_dtype": null,
163
+ "torchscript": false,
164
+ "transformers_version": "4.16.2",
165
+ "type_vocab_size": 1,
166
+ "use_bfloat16": false,
167
+ "use_cache": true,
168
+ "vocab_size": 50265
169
+ },
170
+ "is_encoder_decoder": true,
171
+ "length_penalty": 2.0,
172
+ "max_length": 142,
173
+ "min_length": 56,
174
+ "model_type": "encoder-decoder",
175
+ "no_repeat_ngram_size": 3,
176
+ "num_beams": 4,
177
+ "pad_token_id": 50256,
178
+ "torch_dtype": "float32",
179
+ "transformers_version": null,
180
+ "vocab_size": 50265
181
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5669d1246a9de4f519c29fb78f7685e27958dc5d160718ad53b43033ccb0034
3
+ size 895690953
runs/Feb02_06-33-15_4bb736d862f3/1643783617.6273024/events.out.tfevents.1643783617.4bb736d862f3.126.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d5490978262999057f6cbcc877b4b3d659599c15a6493cf43d3afb83bbee37c9
3
+ size 5087
runs/Feb02_06-33-15_4bb736d862f3/events.out.tfevents.1643783617.4bb736d862f3.126.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:26ff3bbb279d2cbfdb96dfaf0d9b2ae0fc6ff9cca9ed2e9a2549f52e3d1381c1
3
+ size 7700
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a472d8f0cb6a3e67cd8bdf16314f46f5f1e53aedf85cad8fd69f1c40906eb37
3
+ size 3247