Ayham commited on
Commit
658c356
·
1 Parent(s): 28010c7

Training in progress, step 1000

Browse files
.gitignore ADDED
@@ -0,0 +1 @@
 
 
1
+ checkpoint-*/
config.json ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "EncoderDecoderModel"
4
+ ],
5
+ "decoder": {
6
+ "_name_or_path": "bert-base-uncased",
7
+ "add_cross_attention": true,
8
+ "architectures": [
9
+ "BertForMaskedLM"
10
+ ],
11
+ "attention_probs_dropout_prob": 0.1,
12
+ "bad_words_ids": null,
13
+ "bos_token_id": null,
14
+ "chunk_size_feed_forward": 0,
15
+ "classifier_dropout": null,
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
+ "encoder_no_repeat_ngram_size": 0,
22
+ "eos_token_id": null,
23
+ "finetuning_task": null,
24
+ "forced_bos_token_id": null,
25
+ "forced_eos_token_id": null,
26
+ "gradient_checkpointing": false,
27
+ "hidden_act": "gelu",
28
+ "hidden_dropout_prob": 0.1,
29
+ "hidden_size": 768,
30
+ "id2label": {
31
+ "0": "LABEL_0",
32
+ "1": "LABEL_1"
33
+ },
34
+ "initializer_range": 0.02,
35
+ "intermediate_size": 3072,
36
+ "is_decoder": true,
37
+ "is_encoder_decoder": false,
38
+ "label2id": {
39
+ "LABEL_0": 0,
40
+ "LABEL_1": 1
41
+ },
42
+ "layer_norm_eps": 1e-12,
43
+ "length_penalty": 1.0,
44
+ "max_length": 20,
45
+ "max_position_embeddings": 512,
46
+ "min_length": 0,
47
+ "model_type": "bert",
48
+ "no_repeat_ngram_size": 0,
49
+ "num_attention_heads": 12,
50
+ "num_beam_groups": 1,
51
+ "num_beams": 1,
52
+ "num_hidden_layers": 12,
53
+ "num_return_sequences": 1,
54
+ "output_attentions": false,
55
+ "output_hidden_states": false,
56
+ "output_scores": false,
57
+ "pad_token_id": 0,
58
+ "position_embedding_type": "absolute",
59
+ "prefix": null,
60
+ "problem_type": null,
61
+ "pruned_heads": {},
62
+ "remove_invalid_values": false,
63
+ "repetition_penalty": 1.0,
64
+ "return_dict": true,
65
+ "return_dict_in_generate": false,
66
+ "sep_token_id": null,
67
+ "task_specific_params": null,
68
+ "temperature": 1.0,
69
+ "tie_encoder_decoder": false,
70
+ "tie_word_embeddings": true,
71
+ "tokenizer_class": null,
72
+ "top_k": 50,
73
+ "top_p": 1.0,
74
+ "torch_dtype": null,
75
+ "torchscript": false,
76
+ "transformers_version": "4.12.0.dev0",
77
+ "type_vocab_size": 2,
78
+ "use_bfloat16": false,
79
+ "use_cache": true,
80
+ "vocab_size": 30522
81
+ },
82
+ "decoder_start_token_id": 101,
83
+ "early_stopping": true,
84
+ "encoder": {
85
+ "_name_or_path": "xlnet-base-cased",
86
+ "add_cross_attention": false,
87
+ "architectures": [
88
+ "XLNetLMHeadModel"
89
+ ],
90
+ "attn_type": "bi",
91
+ "bad_words_ids": null,
92
+ "bi_data": false,
93
+ "bos_token_id": 1,
94
+ "chunk_size_feed_forward": 0,
95
+ "clamp_len": -1,
96
+ "cross_attention_hidden_size": null,
97
+ "d_head": 64,
98
+ "d_inner": 3072,
99
+ "d_model": 768,
100
+ "decoder_start_token_id": null,
101
+ "diversity_penalty": 0.0,
102
+ "do_sample": false,
103
+ "dropout": 0.1,
104
+ "early_stopping": false,
105
+ "encoder_no_repeat_ngram_size": 0,
106
+ "end_n_top": 5,
107
+ "eos_token_id": 2,
108
+ "ff_activation": "gelu",
109
+ "finetuning_task": null,
110
+ "forced_bos_token_id": null,
111
+ "forced_eos_token_id": null,
112
+ "id2label": {
113
+ "0": "LABEL_0",
114
+ "1": "LABEL_1"
115
+ },
116
+ "initializer_range": 0.02,
117
+ "is_decoder": false,
118
+ "is_encoder_decoder": false,
119
+ "label2id": {
120
+ "LABEL_0": 0,
121
+ "LABEL_1": 1
122
+ },
123
+ "layer_norm_eps": 1e-12,
124
+ "length_penalty": 1.0,
125
+ "max_length": 20,
126
+ "mem_len": null,
127
+ "min_length": 0,
128
+ "model_type": "xlnet",
129
+ "n_head": 12,
130
+ "n_layer": 12,
131
+ "no_repeat_ngram_size": 0,
132
+ "num_beam_groups": 1,
133
+ "num_beams": 1,
134
+ "num_return_sequences": 1,
135
+ "output_attentions": false,
136
+ "output_hidden_states": false,
137
+ "output_scores": false,
138
+ "pad_token_id": 5,
139
+ "prefix": null,
140
+ "problem_type": null,
141
+ "pruned_heads": {},
142
+ "remove_invalid_values": false,
143
+ "repetition_penalty": 1.0,
144
+ "return_dict": true,
145
+ "return_dict_in_generate": false,
146
+ "reuse_len": null,
147
+ "same_length": false,
148
+ "sep_token_id": null,
149
+ "start_n_top": 5,
150
+ "summary_activation": "tanh",
151
+ "summary_last_dropout": 0.1,
152
+ "summary_type": "last",
153
+ "summary_use_proj": true,
154
+ "task_specific_params": {
155
+ "text-generation": {
156
+ "do_sample": true,
157
+ "max_length": 250
158
+ }
159
+ },
160
+ "temperature": 1.0,
161
+ "tie_encoder_decoder": false,
162
+ "tie_word_embeddings": true,
163
+ "tokenizer_class": null,
164
+ "top_k": 50,
165
+ "top_p": 1.0,
166
+ "torch_dtype": null,
167
+ "torchscript": false,
168
+ "transformers_version": "4.12.0.dev0",
169
+ "untie_r": true,
170
+ "use_bfloat16": false,
171
+ "use_mems_eval": true,
172
+ "use_mems_train": false,
173
+ "vocab_size": 32000
174
+ },
175
+ "eos_token_id": 102,
176
+ "is_encoder_decoder": true,
177
+ "length_penalty": 2.0,
178
+ "max_length": 93,
179
+ "min_length": 35,
180
+ "model_type": "encoder-decoder",
181
+ "no_repeat_ngram_size": 3,
182
+ "num_beams": 4,
183
+ "pad_token_id": 0,
184
+ "torch_dtype": "float32",
185
+ "transformers_version": null,
186
+ "vocab_size": 32000
187
+ }
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2d442daf0900285d68bacd257af8a7d2f1ca03ec4967d044ad77c9014268d58
3
+ size 1018610847
runs/Feb25_16-43-12_969c1b89fc26/1645807414.4986699/events.out.tfevents.1645807414.969c1b89fc26.124.1 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46c1b1cedb79835155e3776e5c70daeb270efdc2c36bcf3136f4ded6e3ff37cf
3
+ size 4814
runs/Feb25_16-43-12_969c1b89fc26/events.out.tfevents.1645807414.969c1b89fc26.124.0 ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:659a0b59ff3e353d32aa822ad0e1ed3e9411b1a5c0a8079e77ebc588e0c4b813
3
+ size 7603
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4c97447dc755f481c18c3243fe85cfef185090bf04af7e011e754b32152d5120
3
+ size 2991