alvp commited on
Commit
262dc5e
1 Parent(s): d6a9d20

Model at 200k steps, mlm acc 0.5743

Browse files
README.md ADDED
File without changes
config.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "BertForMaskedLM"
4
+ ],
5
+ "attention_probs_dropout_prob": 0.1,
6
+ "directionality": "bidi",
7
+ "gradient_checkpointing": false,
8
+ "hidden_act": "gelu",
9
+ "hidden_dropout_prob": 0.1,
10
+ "hidden_size": 768,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 3072,
13
+ "layer_norm_eps": 1e-12,
14
+ "max_position_embeddings": 512,
15
+ "model_type": "bert",
16
+ "num_attention_heads": 12,
17
+ "num_hidden_layers": 12,
18
+ "pad_token_id": 0,
19
+ "pooler_fc_size": 768,
20
+ "pooler_num_attention_heads": 12,
21
+ "pooler_num_fc_layers": 3,
22
+ "pooler_size_per_head": 128,
23
+ "pooler_type": "first_token_transform",
24
+ "position_embedding_type": "absolute",
25
+ "transformers_version": "4.9.0.dev0",
26
+ "type_vocab_size": 2,
27
+ "use_cache": true,
28
+ "vocab_size": 119547
29
+ }
config.py ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python
2
+
3
+ from transformers import BertConfig
4
+
5
+ config = BertConfig.from_pretrained("bert-base-multilingual-cased")
6
+
7
+ config.save_pretrained("./")
convert.py ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ #!/usr/bin/env python
3
+ import tempfile
4
+ import jax
5
+ from jax import numpy as jnp
6
+ from transformers import AutoTokenizer, FlaxRobertaForMaskedLM, RobertaForMaskedLM, FlaxBertForMaskedLM, BertForMaskedLM
7
+
8
+
9
+ def main():
10
+ # Saving extra files from config.json and tokenizer.json files
11
+ tokenizer = AutoTokenizer.from_pretrained("bert-base-multilingual-cased")
12
+ tokenizer.save_pretrained("./")
13
+ # Temporary saving bfloat16 Flax model into float32
14
+ tmp = tempfile.mkdtemp()
15
+ #flax_model = FlaxRobertaForMaskedLM.from_pretrained("./")
16
+ flax_model = FlaxBertForMaskedLM.from_pretrained("./")
17
+ flax_model.save_pretrained(tmp)
18
+ # Converting float32 Flax to PyTorch
19
+ #model = RobertaForMaskedLM.from_pretrained(tmp, from_flax=True)
20
+ model = BertForMaskedLM.from_pretrained(tmp, from_flax=True)
21
+ model.save_pretrained("./", save_config=False)
22
+
23
+
24
+ if __name__ == "__main__":
25
+ main()
data_collator.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:890d08ca85aff9c8e719bfa4da800dee8a31ba8b132aaf0440c8149df433a66a
3
+ size 1962900
flax_model.msgpack ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:4dac3cad64f96e85fbb166fdd23404a43b1e0fc0e6b7b0c0f3ea325cac14dfa3
3
+ size 711905363
optimizer_state.msgpack ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5afd04feec7059fc035dc1536c98991512bc84b76b88c153fd8c89e7a80b631a
3
+ size 1423810966
pytorch_model.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:74e76b0ba8bee646b78f7efdbdf3cd500ca183bc26439944fc1733f48a77f5ba
3
+ size 711980011
run.sh ADDED
@@ -0,0 +1,27 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # From https://arxiv.org/pdf/1907.11692.pdf
2
+ ./run_mlm_flax.py \
3
+ --model_name_or_path="bert-base-multilingual-cased" \
4
+ --output_dir="./" \
5
+ --model_type="bert" \
6
+ --config_name="./" \
7
+ --validation_file="./datasets/pulpo_lines_clean_val.json" \
8
+ --train_file="./datasets/pulpo_lines_clean_train.json" \
9
+ --tokenizer_name="bert-base-multilingual-cased" \
10
+ --max_seq_length="32" \
11
+ --pad_to_max_length \
12
+ --per_device_train_batch_size="256" \
13
+ --per_device_eval_batch_size="256" \
14
+ --adam_beta1="0.9" \
15
+ --adam_beta2="0.98" \
16
+ --adam_epsilon="1e-6" \
17
+ --learning_rate="1e-4" \
18
+ --weight_decay="0.01" \
19
+ --save_strategy="steps" \
20
+ --save_steps="1000" \
21
+ --save_total_limit="5" \
22
+ --warmup_steps="10000" \
23
+ --num_train_epochs="40" \
24
+ --overwrite_output_dir \
25
+ --eval_steps="1000" \
26
+ --save_total_limit="1000" \
27
+ --logging_steps="500" 2>&1 | tee run.log
run_mlm_flax.py ADDED
@@ -0,0 +1,745 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python
2
+ # coding=utf-8
3
+ # Copyright 2021 The HuggingFace Team All rights reserved.
4
+ #
5
+ # Licensed under the Apache License, Version 2.0 (the "License");
6
+ # you may not use this file except in compliance with the License.
7
+ # You may obtain a copy of the License at
8
+ #
9
+ # http://www.apache.org/licenses/LICENSE-2.0
10
+ #
11
+ # Unless required by applicable law or agreed to in writing, software
12
+ # distributed under the License is distributed on an "AS IS" BASIS,
13
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14
+ # See the License for the specific language governing permissions and
15
+ # limitations under the License.
16
+ """
17
+ Fine-tuning the library models for masked language modeling (BERT, ALBERT, RoBERTa...) with whole word masking on a
18
+ text file or a dataset.
19
+
20
+ Here is the full list of checkpoints on the hub that can be fine-tuned by this script:
21
+ https://huggingface.co/models?filter=masked-lm
22
+ """
23
+ import json
24
+ import logging
25
+ import os
26
+ import shutil
27
+ import sys
28
+ import time
29
+ from dataclasses import dataclass, field
30
+
31
+ # You can also adapt this script on your own masked language modeling task. Pointers for this are left as comments.
32
+ from pathlib import Path
33
+ from typing import Dict, List, Optional, Tuple
34
+
35
+ import joblib
36
+ import numpy as np
37
+ from datasets import load_dataset
38
+ from tqdm import tqdm
39
+
40
+ import flax
41
+ import jax
42
+ import jax.numpy as jnp
43
+ import optax
44
+ from flax import jax_utils, traverse_util
45
+ from flax.serialization import from_bytes, to_bytes
46
+ from flax.training import train_state
47
+ from flax.training.common_utils import get_metrics, onehot, shard
48
+ from transformers import (
49
+ CONFIG_MAPPING,
50
+ FLAX_MODEL_FOR_MASKED_LM_MAPPING,
51
+ AutoConfig,
52
+ AutoTokenizer,
53
+ FlaxAutoModelForMaskedLM,
54
+ HfArgumentParser,
55
+ PreTrainedTokenizerBase,
56
+ TensorType,
57
+ TrainingArguments,
58
+ is_tensorboard_available,
59
+ set_seed,
60
+ )
61
+
62
+ print("TPU count:", jax.device_count())
63
+
64
+ MODEL_CONFIG_CLASSES = list(FLAX_MODEL_FOR_MASKED_LM_MAPPING.keys())
65
+ MODEL_TYPES = tuple(conf.model_type for conf in MODEL_CONFIG_CLASSES)
66
+
67
+
68
+
69
+ @dataclass
70
+ class ModelArguments:
71
+ """
72
+ Arguments pertaining to which model/config/tokenizer we are going to fine-tune, or train from scratch.
73
+ """
74
+
75
+ model_name_or_path: Optional[str] = field(
76
+ default=None,
77
+ metadata={
78
+ "help": "The model checkpoint for weights initialization."
79
+ "Don't set if you want to train a model from scratch."
80
+ },
81
+ )
82
+ model_type: Optional[str] = field(
83
+ default=None,
84
+ metadata={"help": "If training from scratch, pass a model type from the list: " + ", ".join(MODEL_TYPES)},
85
+ )
86
+ config_name: Optional[str] = field(
87
+ default=None, metadata={"help": "Pretrained config name or path if not the same as model_name"}
88
+ )
89
+ tokenizer_name: Optional[str] = field(
90
+ default=None, metadata={"help": "Pretrained tokenizer name or path if not the same as model_name"}
91
+ )
92
+ cache_dir: Optional[str] = field(
93
+ default=None, metadata={"help": "Where do you want to store the pretrained models downloaded from s3"}
94
+ )
95
+ use_fast_tokenizer: bool = field(
96
+ default=True,
97
+ metadata={"help": "Whether to use one of the fast tokenizer (backed by the tokenizers library) or not."},
98
+ )
99
+ dtype: Optional[str] = field(
100
+ default="float32",
101
+ metadata={
102
+ "help": "Floating-point format in which the model weights should be initialized and trained. Choose one of `[float32, float16, bfloat16]`."
103
+ },
104
+ )
105
+
106
+
107
+ @dataclass
108
+ class DataTrainingArguments:
109
+ """
110
+ Arguments pertaining to what data we are going to input our model for training and eval.
111
+ """
112
+
113
+ dataset_name: Optional[str] = field(
114
+ default=None, metadata={"help": "The name of the dataset to use (via the datasets library)."}
115
+ )
116
+ dataset_config_name: Optional[str] = field(
117
+ default=None, metadata={"help": "The configuration name of the dataset to use (via the datasets library)."}
118
+ )
119
+ train_file: Optional[str] = field(default=None, metadata={"help": "The input training data file (a text file)."})
120
+ validation_file: Optional[str] = field(
121
+ default=None,
122
+ metadata={"help": "An optional input evaluation data file to evaluate the perplexity on (a text file)."},
123
+ )
124
+ train_ref_file: Optional[str] = field(
125
+ default=None,
126
+ metadata={"help": "An optional input train ref data file for whole word masking in Chinese."},
127
+ )
128
+ validation_ref_file: Optional[str] = field(
129
+ default=None,
130
+ metadata={"help": "An optional input validation ref data file for whole word masking in Chinese."},
131
+ )
132
+ overwrite_cache: bool = field(
133
+ default=False, metadata={"help": "Overwrite the cached training and evaluation sets"}
134
+ )
135
+ validation_split_percentage: Optional[int] = field(
136
+ default=5,
137
+ metadata={
138
+ "help": "The percentage of the train set used as validation set in case there's no validation split"
139
+ },
140
+ )
141
+ max_seq_length: Optional[int] = field(
142
+ default=None,
143
+ metadata={
144
+ "help": "The maximum total input sequence length after tokenization. Sequences longer "
145
+ "than this will be truncated. Default to the max input length of the model."
146
+ },
147
+ )
148
+ preprocessing_num_workers: Optional[int] = field(
149
+ default=None,
150
+ metadata={"help": "The number of processes to use for the preprocessing."},
151
+ )
152
+ mlm_probability: float = field(
153
+ default=0.15, metadata={"help": "Ratio of tokens to mask for masked language modeling loss"}
154
+ )
155
+ pad_to_max_length: bool = field(
156
+ default=False,
157
+ metadata={
158
+ "help": "Whether to pad all samples to `max_seq_length`. "
159
+ "If False, will pad the samples dynamically when batching to the maximum length in the batch."
160
+ },
161
+ )
162
+ line_by_line: bool = field(
163
+ default=False,
164
+ metadata={"help": "Whether distinct lines of text in the dataset are to be handled as distinct sequences."},
165
+ )
166
+
167
+ def __post_init__(self):
168
+ if self.dataset_name is None and self.train_file is None and self.validation_file is None:
169
+ raise ValueError("Need either a dataset name or a training/validation file.")
170
+ else:
171
+ if self.train_file is not None:
172
+ extension = self.train_file.split(".")[-1]
173
+ assert extension in ["csv", "json", "txt"], "`train_file` should be a csv, a json or a txt file."
174
+ if self.validation_file is not None:
175
+ extension = self.validation_file.split(".")[-1]
176
+ assert extension in ["csv", "json", "txt"], "`validation_file` should be a csv, a json or a txt file."
177
+
178
+
179
+ @flax.struct.dataclass
180
+ class FlaxDataCollatorForLanguageModeling:
181
+ """
182
+ Data collator used for language modeling. Inputs are dynamically padded to the maximum length of a batch if they
183
+ are not all of the same length.
184
+
185
+ Args:
186
+ tokenizer (:class:`~transformers.PreTrainedTokenizer` or :class:`~transformers.PreTrainedTokenizerFast`):
187
+ The tokenizer used for encoding the data.
188
+ mlm_probability (:obj:`float`, `optional`, defaults to 0.15):
189
+ The probability with which to (randomly) mask tokens in the input.
190
+
191
+ .. note::
192
+
193
+ For best performance, this data collator should be used with a dataset having items that are dictionaries or
194
+ BatchEncoding, with the :obj:`"special_tokens_mask"` key, as returned by a
195
+ :class:`~transformers.PreTrainedTokenizer` or a :class:`~transformers.PreTrainedTokenizerFast` with the
196
+ argument :obj:`return_special_tokens_mask=True`.
197
+ """
198
+
199
+ tokenizer: PreTrainedTokenizerBase
200
+ mlm_probability: float = 0.15
201
+
202
+ def __post_init__(self):
203
+ if self.tokenizer.mask_token is None:
204
+ raise ValueError(
205
+ "This tokenizer does not have a mask token which is necessary for masked language modeling. "
206
+ "You should pass `mlm=False` to train on causal language modeling instead."
207
+ )
208
+
209
+ def __call__(self, examples: List[Dict[str, np.ndarray]], pad_to_multiple_of: int) -> Dict[str, np.ndarray]:
210
+ # Handle dict or lists with proper padding and conversion to tensor.
211
+ batch = self.tokenizer.pad(examples, pad_to_multiple_of=pad_to_multiple_of, return_tensors=TensorType.NUMPY)
212
+
213
+ # If special token mask has been preprocessed, pop it from the dict.
214
+ special_tokens_mask = batch.pop("special_tokens_mask", None)
215
+
216
+ batch["input_ids"], batch["labels"] = self.mask_tokens(
217
+ batch["input_ids"], special_tokens_mask=special_tokens_mask
218
+ )
219
+ return batch
220
+
221
+ def mask_tokens(
222
+ self, inputs: np.ndarray, special_tokens_mask: Optional[np.ndarray]
223
+ ) -> Tuple[jnp.ndarray, jnp.ndarray]:
224
+ """
225
+ Prepare masked tokens inputs/labels for masked language modeling: 80% MASK, 10% random, 10% original.
226
+ """
227
+ labels = inputs.copy()
228
+ # We sample a few tokens in each sequence for MLM training (with probability `self.mlm_probability`)
229
+ probability_matrix = np.full(labels.shape, self.mlm_probability)
230
+ special_tokens_mask = special_tokens_mask.astype("bool")
231
+
232
+ probability_matrix[special_tokens_mask] = 0.0
233
+ masked_indices = np.random.binomial(1, probability_matrix).astype("bool")
234
+ labels[~masked_indices] = -100 # We only compute loss on masked tokens
235
+
236
+ # 80% of the time, we replace masked input tokens with tokenizer.mask_token ([MASK])
237
+ indices_replaced = np.random.binomial(1, np.full(labels.shape, 0.8)).astype("bool") & masked_indices
238
+ inputs[indices_replaced] = self.tokenizer.convert_tokens_to_ids(self.tokenizer.mask_token)
239
+
240
+ # 10% of the time, we replace masked input tokens with random word
241
+ indices_random = np.random.binomial(1, np.full(labels.shape, 0.5)).astype("bool")
242
+ indices_random &= masked_indices & ~indices_replaced
243
+
244
+ random_words = np.random.randint(self.tokenizer.vocab_size, size=labels.shape, dtype="i4")
245
+ inputs[indices_random] = random_words[indices_random]
246
+
247
+ # The rest of the time (10% of the time) we keep the masked input tokens unchanged
248
+ return inputs, labels
249
+
250
+
251
+ def generate_batch_splits(samples_idx: jnp.ndarray, batch_size: int) -> jnp.ndarray:
252
+ num_samples = len(samples_idx)
253
+ samples_to_remove = num_samples % batch_size
254
+
255
+ if samples_to_remove != 0:
256
+ samples_idx = samples_idx[:-samples_to_remove]
257
+ sections_split = num_samples // batch_size
258
+ batch_idx = np.split(samples_idx, sections_split)
259
+ return batch_idx
260
+
261
+
262
+ def write_train_metric(summary_writer, train_metrics, train_time, step):
263
+ summary_writer.scalar("train_time", train_time, step)
264
+
265
+ train_metrics = get_metrics(train_metrics)
266
+ for key, vals in train_metrics.items():
267
+ tag = f"train_{key}"
268
+ for i, val in enumerate(vals):
269
+ summary_writer.scalar(tag, val, step - len(vals) + i + 1)
270
+
271
+
272
+ def write_eval_metric(summary_writer, eval_metrics, step):
273
+ for metric_name, value in eval_metrics.items():
274
+ summary_writer.scalar(f"eval_{metric_name}", value, step)
275
+
276
+
277
+ def rotate_checkpoints(path, max_checkpoints=5):
278
+ paths = sorted(Path(path).iterdir(), key=os.path.getmtime)[::-1]
279
+ if len(paths) > max_checkpoints:
280
+ for path_to_delete in paths[max_checkpoints:]:
281
+ try:
282
+ shutil.rmtree(path_to_delete)
283
+ except OSError:
284
+ os.remove(path_to_delete)
285
+
286
+
287
+ def save_checkpoint_files(state, data_collator, training_args, save_dir):
288
+ unreplicated_state = jax_utils.unreplicate(state)
289
+ with open(os.path.join(save_dir, "optimizer_state.msgpack"), "wb") as f:
290
+ f.write(to_bytes(unreplicated_state.opt_state))
291
+ joblib.dump(training_args, os.path.join(save_dir, "training_args.joblib"))
292
+ joblib.dump(data_collator, os.path.join(save_dir, "data_collator.joblib"))
293
+ with open(os.path.join(save_dir, "training_state.json"), "w") as f:
294
+ json.dump({"step": unreplicated_state.step.item()}, f)
295
+
296
+
297
+
298
+ if __name__ == "__main__":
299
+ # See all possible arguments in src/transformers/training_args.py
300
+ # or by passing the --help flag to this script.
301
+ # We now keep distinct sets of args, for a cleaner separation of concerns.
302
+
303
+ parser = HfArgumentParser((ModelArguments, DataTrainingArguments, TrainingArguments))
304
+ if len(sys.argv) == 2 and sys.argv[1].endswith(".json"):
305
+ # If we pass only one argument to the script and it's the path to a json file,
306
+ # let's parse it to get our arguments.
307
+ model_args, data_args, training_args = parser.parse_json_file(json_file=os.path.abspath(sys.argv[1]))
308
+ else:
309
+ model_args, data_args, training_args = parser.parse_args_into_dataclasses()
310
+
311
+ if (
312
+ os.path.exists(training_args.output_dir)
313
+ and os.listdir(training_args.output_dir)
314
+ and training_args.do_train
315
+ and not training_args.overwrite_output_dir
316
+ ):
317
+ raise ValueError(
318
+ f"Output directory ({training_args.output_dir}) already exists and is not empty."
319
+ "Use --overwrite_output_dir to overcome."
320
+ )
321
+
322
+ # Setup logging
323
+ logging.basicConfig(
324
+ format="%(asctime)s - %(levelname)s - %(name)s - %(message)s",
325
+ level="NOTSET",
326
+ datefmt="[%X]",
327
+ )
328
+
329
+ # Log on each process the small summary:
330
+ logger = logging.getLogger(__name__)
331
+ logger.warning(
332
+ f"Process rank: {training_args.local_rank}, device: {training_args.device}, n_gpu: {training_args.n_gpu}"
333
+ + f"distributed training: {bool(training_args.local_rank != -1)}, 16-bits training: {training_args.fp16}"
334
+ )
335
+
336
+ # Set the verbosity to info of the Transformers logger (on main process only):
337
+ logger.info(f"Training/evaluation parameters {training_args}")
338
+
339
+ # Set seed before initializing model.
340
+ set_seed(training_args.seed)
341
+
342
+ # Get the datasets: you can either provide your own CSV/JSON/TXT training and evaluation files (see below)
343
+ # or just provide the name of one of the public datasets available on the hub at https://huggingface.co/datasets/
344
+ # (the dataset will be downloaded automatically from the datasets Hub).
345
+ #
346
+ # For CSV/JSON files, this script will use the column called 'text' or the first column if no column called
347
+ # 'text' is found. You can easily tweak this behavior (see below).
348
+ #
349
+ # In distributed training, the load_dataset function guarantees that only one local process can concurrently
350
+ # download the dataset.
351
+
352
+ #datasets = load_dataset('json', name='averell', data_files={"train": "./datasets/lines_train.json", "validation": "./datasets/lines_val.json"})
353
+
354
+ if data_args.dataset_name is not None:
355
+ # Downloading and loading a dataset from the hub.
356
+ datasets = load_dataset(data_args.dataset_name, data_args.dataset_config_name, cache_dir=model_args.cache_dir)
357
+
358
+ if "validation" not in datasets.keys():
359
+ datasets["validation"] = load_dataset(
360
+ data_args.dataset_name,
361
+ data_args.dataset_config_name,
362
+ split=f"train[:{data_args.validation_split_percentage}%]",
363
+ cache_dir=model_args.cache_dir,
364
+ )
365
+ datasets["train"] = load_dataset(
366
+ data_args.dataset_name,
367
+ data_args.dataset_config_name,
368
+ split=f"train[{data_args.validation_split_percentage}%:]",
369
+ cache_dir=model_args.cache_dir,
370
+ )
371
+ else:
372
+ #### Custom dataset
373
+ data_files = {}
374
+ if data_args.train_file is not None:
375
+ data_files["train"] = data_args.train_file
376
+ if data_args.validation_file is not None:
377
+ data_files["validation"] = data_args.validation_file
378
+ extension = data_args.train_file.split(".")[-1]
379
+ if extension == "txt":
380
+ extension = "text"
381
+ datasets = load_dataset(extension, data_files=data_files, cache_dir=model_args.cache_dir)
382
+ #datasets = load_dataset('json', name='averell', data_files={"train": "./datasets/lines_train.json", "validation": "./datasets/lines_val.json"})
383
+
384
+ # See more about loading any type of standard or custom dataset (from files, python dict, pandas DataFrame, etc) at
385
+ # https://huggingface.co/docs/datasets/loading_datasets.html.
386
+
387
+ # Load pretrained model and tokenizer
388
+
389
+ # Distributed training:
390
+ # The .from_pretrained methods guarantee that only one local process can concurrently
391
+ # download model & vocab.
392
+ if model_args.config_name:
393
+ config = AutoConfig.from_pretrained(model_args.config_name, cache_dir=model_args.cache_dir)
394
+ elif model_args.model_name_or_path:
395
+ config = AutoConfig.from_pretrained(model_args.model_name_or_path, cache_dir=model_args.cache_dir)
396
+ else:
397
+ config = CONFIG_MAPPING[model_args.model_type]()
398
+ logger.warning("You are instantiating a new config instance from scratch.")
399
+
400
+ if model_args.tokenizer_name:
401
+ tokenizer = AutoTokenizer.from_pretrained(
402
+ model_args.tokenizer_name, cache_dir=model_args.cache_dir, use_fast=model_args.use_fast_tokenizer
403
+ )
404
+ elif model_args.model_name_or_path:
405
+ tokenizer = AutoTokenizer.from_pretrained(
406
+ model_args.model_name_or_path, cache_dir=model_args.cache_dir, use_fast=model_args.use_fast_tokenizer
407
+ )
408
+ else:
409
+ raise ValueError(
410
+ "You are instantiating a new tokenizer from scratch. This is not supported by this script."
411
+ "You can do it from another script, save it, and load it from here, using --tokenizer_name."
412
+ )
413
+
414
+ # Preprocessing the datasets.
415
+ # First we tokenize all the texts.
416
+ if training_args.do_train:
417
+ column_names = datasets["train"].column_names
418
+ else:
419
+ column_names = datasets["validation"].column_names
420
+ text_column_name = "text" if "text" in column_names else column_names[0]
421
+
422
+ max_seq_length = min(data_args.max_seq_length, tokenizer.model_max_length)
423
+
424
+ if data_args.line_by_line:
425
+ # When using line_by_line, we just tokenize each nonempty line.
426
+ padding = "max_length" if data_args.pad_to_max_length else False
427
+
428
+ def tokenize_function(examples):
429
+ # Remove empty lines
430
+ examples = [line for line in examples if len(line) > 0 and not line.isspace()]
431
+ return tokenizer(
432
+ examples,
433
+ return_special_tokens_mask=True,
434
+ padding=padding,
435
+ truncation=True,
436
+ max_length=max_seq_length,
437
+ )
438
+
439
+ tokenized_datasets = datasets.map(
440
+ tokenize_function,
441
+ input_columns=[text_column_name],
442
+ batched=True,
443
+ num_proc=data_args.preprocessing_num_workers,
444
+ remove_columns=column_names,
445
+ load_from_cache_file=not data_args.overwrite_cache,
446
+ )
447
+
448
+ else:
449
+ # Otherwise, we tokenize every text, then concatenate them together before splitting them in smaller parts.
450
+ # We use `return_special_tokens_mask=True` because DataCollatorForLanguageModeling (see below) is more
451
+ # efficient when it receives the `special_tokens_mask`.
452
+ def tokenize_function(examples):
453
+ return tokenizer(examples[text_column_name], return_special_tokens_mask=True)
454
+
455
+ tokenized_datasets = datasets.map(
456
+ tokenize_function,
457
+ batched=True,
458
+ num_proc=data_args.preprocessing_num_workers,
459
+ remove_columns=column_names,
460
+ load_from_cache_file=not data_args.overwrite_cache,
461
+ )
462
+
463
+ # Main data processing function that will concatenate all texts from our dataset and generate chunks of
464
+ # max_seq_length.
465
+ def group_texts(examples):
466
+ # Concatenate all texts.
467
+ concatenated_examples = {k: sum(examples[k], []) for k in examples.keys()}
468
+ total_length = len(concatenated_examples[list(examples.keys())[0]])
469
+ # We drop the small remainder, we could add padding if the model supported it instead of this drop, you can
470
+ # customize this part to your needs.
471
+ total_length = (total_length // max_seq_length) * max_seq_length
472
+ # Split by chunks of max_len.
473
+ result = {
474
+ k: [t[i : i + max_seq_length] for i in range(0, total_length, max_seq_length)]
475
+ for k, t in concatenated_examples.items()
476
+ }
477
+ return result
478
+
479
+ # Note that with `batched=True`, this map processes 1,000 texts together, so group_texts throws away a
480
+ # remainder for each of those groups of 1,000 texts. You can adjust that batch_size here but a higher value
481
+ # might be slower to preprocess.
482
+ #
483
+ # To speed up this part, we use multiprocessing. See the documentation of the map method for more information:
484
+ # https://huggingface.co/docs/datasets/package_reference/main_classes.html#datasets.Dataset.map
485
+ tokenized_datasets = tokenized_datasets.map(
486
+ group_texts,
487
+ batched=True,
488
+ num_proc=data_args.preprocessing_num_workers,
489
+ load_from_cache_file=not data_args.overwrite_cache,
490
+ )
491
+
492
+ # Enable tensorboard only on the master node
493
+ has_tensorboard = is_tensorboard_available()
494
+ if has_tensorboard and jax.process_index() == 0:
495
+ try:
496
+ import wandb
497
+ wandb.init(
498
+ entity='wandb',
499
+ project='hf-flax-alberti-poetry',
500
+ sync_tensorboard=True,
501
+ )
502
+ wandb.config.update(training_args)
503
+ wandb.config.update(model_args)
504
+ wandb.config.update(data_args)
505
+
506
+ from flax.metrics.tensorboard import SummaryWriter
507
+
508
+ summary_writer = SummaryWriter(log_dir=Path(training_args.output_dir) / "logs")
509
+
510
+
511
+ except ImportError as ie:
512
+ has_tensorboard = False
513
+ logger.warning(
514
+ f"Unable to display metrics through TensorBoard because some package are not installed: {ie}"
515
+ )
516
+ else:
517
+ logger.warning(
518
+ "Unable to display metrics through TensorBoard because the package is not installed: "
519
+ "Please run pip install tensorboard to enable."
520
+ )
521
+
522
+ # Data collator
523
+ # This one will take care of randomly masking the tokens.
524
+ data_collator = FlaxDataCollatorForLanguageModeling(tokenizer=tokenizer, mlm_probability=data_args.mlm_probability)
525
+
526
+ # Initialize our training
527
+ rng = jax.random.PRNGKey(training_args.seed)
528
+ dropout_rngs = jax.random.split(rng, jax.local_device_count())
529
+
530
+ if model_args.model_name_or_path:
531
+ model = FlaxAutoModelForMaskedLM.from_pretrained(
532
+ model_args.model_name_or_path, config=config, seed=training_args.seed, dtype=getattr(jnp, model_args.dtype)
533
+ )
534
+ else:
535
+ model = FlaxAutoModelForMaskedLM.from_config(
536
+ config, seed=training_args.seed, dtype=getattr(jnp, model_args.dtype)
537
+ )
538
+
539
+ # Store some constant
540
+ num_epochs = int(training_args.num_train_epochs)
541
+ train_batch_size = int(training_args.per_device_train_batch_size) * jax.device_count()
542
+ eval_batch_size = int(training_args.per_device_eval_batch_size) * jax.device_count()
543
+
544
+ num_train_steps = len(tokenized_datasets["train"]) // train_batch_size * num_epochs
545
+
546
+ # Create learning rate schedule
547
+ warmup_fn = optax.linear_schedule(
548
+ init_value=0.0, end_value=training_args.learning_rate, transition_steps=training_args.warmup_steps
549
+ )
550
+ decay_fn = optax.linear_schedule(
551
+ init_value=training_args.learning_rate,
552
+ end_value=0,
553
+ transition_steps=num_train_steps - training_args.warmup_steps,
554
+ )
555
+ linear_decay_lr_schedule_fn = optax.join_schedules(
556
+ schedules=[warmup_fn, decay_fn], boundaries=[training_args.warmup_steps]
557
+ )
558
+
559
+ # We use Optax's "masking" functionality to not apply weight decay
560
+ # to bias and LayerNorm scale parameters. decay_mask_fn returns a
561
+ # mask boolean with the same structure as the parameters.
562
+ # The mask is True for parameters that should be decayed.
563
+ # Note that this mask is specifically adapted for FlaxBERT-like models.
564
+ # For other models, one should correct the layer norm parameter naming
565
+ # accordingly.
566
+ def decay_mask_fn(params):
567
+ flat_params = traverse_util.flatten_dict(params)
568
+ flat_mask = {path: (path[-1] != "bias" and path[-2:] != ("LayerNorm", "scale")) for path in flat_params}
569
+ return traverse_util.unflatten_dict(flat_mask)
570
+
571
+ # create adam optimizer
572
+ if training_args.adafactor:
573
+ # We use the default parameters here to initialize adafactor,
574
+ # For more details about the parameters please check https://github.com/deepmind/optax/blob/ed02befef9bf81cbbf236be3d2b0e032e9ed4a40/optax/_src/alias.py#L74
575
+ optimizer = optax.adafactor(
576
+ learning_rate=linear_decay_lr_schedule_fn,
577
+ )
578
+ else:
579
+ optimizer = optax.adamw(
580
+ learning_rate=linear_decay_lr_schedule_fn,
581
+ b1=training_args.adam_beta1,
582
+ b2=training_args.adam_beta2,
583
+ eps=training_args.adam_epsilon,
584
+ weight_decay=training_args.weight_decay,
585
+ mask=decay_mask_fn,
586
+ )
587
+
588
+ # Setup train state
589
+ state = train_state.TrainState.create(apply_fn=model.__call__, params=model.params, tx=optimizer)
590
+
591
+ # Define gradient update step fn
592
+ def train_step(state, batch, dropout_rng):
593
+ dropout_rng, new_dropout_rng = jax.random.split(dropout_rng)
594
+
595
+ def loss_fn(params):
596
+ labels = batch.pop("labels")
597
+
598
+ logits = state.apply_fn(**batch, params=params, dropout_rng=dropout_rng, train=True)[0]
599
+
600
+ # compute loss, ignore padded input tokens
601
+ label_mask = jnp.where(labels > 0, 1.0, 0.0)
602
+ loss = optax.softmax_cross_entropy(logits, onehot(labels, logits.shape[-1])) * label_mask
603
+
604
+ # take average
605
+ loss = loss.sum() / label_mask.sum()
606
+
607
+ return loss
608
+
609
+ grad_fn = jax.value_and_grad(loss_fn)
610
+ loss, grad = grad_fn(state.params)
611
+ grad = jax.lax.pmean(grad, "batch")
612
+ new_state = state.apply_gradients(grads=grad)
613
+
614
+ metrics = jax.lax.pmean(
615
+ {"loss": loss, "learning_rate": linear_decay_lr_schedule_fn(state.step)}, axis_name="batch"
616
+ )
617
+
618
+ return new_state, metrics, new_dropout_rng
619
+
620
+ # Create parallel version of the train step
621
+ p_train_step = jax.pmap(train_step, "batch", donate_argnums=(0,))
622
+
623
+ # Define eval fn
624
+ def eval_step(params, batch):
625
+ labels = batch.pop("labels")
626
+
627
+ logits = model(**batch, params=params, train=False)[0]
628
+
629
+ # compute loss, ignore padded input tokens
630
+ label_mask = jnp.where(labels > 0, 1.0, 0.0)
631
+ loss = optax.softmax_cross_entropy(logits, onehot(labels, logits.shape[-1])) * label_mask
632
+
633
+ # compute accuracy
634
+ accuracy = jnp.equal(jnp.argmax(logits, axis=-1), labels) * label_mask
635
+
636
+ # summarize metrics
637
+ metrics = {"loss": loss.sum(), "accuracy": accuracy.sum(), "normalizer": label_mask.sum()}
638
+ metrics = jax.lax.psum(metrics, axis_name="batch")
639
+
640
+ return metrics
641
+
642
+ p_eval_step = jax.pmap(eval_step, "batch", donate_argnums=(0,))
643
+
644
+ # Replicate the train state on each device
645
+ state = jax_utils.replicate(state)
646
+
647
+ train_time = 0
648
+ epochs = tqdm(range(num_epochs), desc=f"Epoch ... (1/{num_epochs})", position=0)
649
+ for epoch in epochs:
650
+ # ======================== Training ================================
651
+ train_start = time.time()
652
+ train_metrics = []
653
+
654
+ # Create sampling rng
655
+ rng, input_rng = jax.random.split(rng)
656
+
657
+ # Generate an epoch by shuffling sampling indices from the train dataset
658
+ num_train_samples = len(tokenized_datasets["train"])
659
+ train_samples_idx = jax.random.permutation(input_rng, jnp.arange(num_train_samples))
660
+ train_batch_idx = generate_batch_splits(train_samples_idx, train_batch_size)
661
+
662
+ # Gather the indexes for creating the batch and do a training step
663
+ for step, batch_idx in enumerate(tqdm(train_batch_idx, desc="Training...", position=1)):
664
+ samples = [tokenized_datasets["train"][int(idx)] for idx in batch_idx]
665
+ model_inputs = data_collator(samples, pad_to_multiple_of=16)
666
+
667
+ # Model forward
668
+ model_inputs = shard(model_inputs.data)
669
+ state, train_metric, dropout_rngs = p_train_step(state, model_inputs, dropout_rngs)
670
+ train_metrics.append(train_metric)
671
+
672
+ cur_step = epoch * (num_train_samples // train_batch_size) + step
673
+
674
+ if cur_step % training_args.logging_steps == 0 and cur_step > 0:
675
+ # Save metrics
676
+ train_metric = jax_utils.unreplicate(train_metric)
677
+ train_time += time.time() - train_start
678
+ if has_tensorboard and jax.process_index() == 0:
679
+ write_train_metric(summary_writer, train_metrics, train_time, cur_step)
680
+
681
+ epochs.write(
682
+ f"Step... ({cur_step} | Loss: {train_metric['loss']}, Learning Rate: {train_metric['learning_rate']})"
683
+ )
684
+
685
+ train_metrics = []
686
+
687
+ if cur_step % training_args.eval_steps == 0 and cur_step > 0:
688
+ # ======================== Evaluating ==============================
689
+ num_eval_samples = len(tokenized_datasets["validation"])
690
+ eval_samples_idx = jnp.arange(num_eval_samples)
691
+ eval_batch_idx = generate_batch_splits(eval_samples_idx, eval_batch_size)
692
+
693
+ eval_metrics = []
694
+ for i, batch_idx in enumerate(tqdm(eval_batch_idx, desc="Evaluating ...", position=2)):
695
+ samples = [tokenized_datasets["validation"][int(idx)] for idx in batch_idx]
696
+ model_inputs = data_collator(samples, pad_to_multiple_of=16)
697
+
698
+ # Model forward
699
+ model_inputs = shard(model_inputs.data)
700
+ metrics = p_eval_step(state.params, model_inputs)
701
+ eval_metrics.append(metrics)
702
+
703
+ # normalize eval metrics
704
+ eval_metrics = get_metrics(eval_metrics)
705
+ eval_metrics = jax.tree_map(jnp.sum, eval_metrics)
706
+ eval_normalizer = eval_metrics.pop("normalizer")
707
+ eval_metrics = jax.tree_map(lambda x: x / eval_normalizer, eval_metrics)
708
+
709
+ # Update progress bar
710
+ epochs.desc = f"Step... ({cur_step} | Loss: {eval_metrics['loss']}, Acc: {eval_metrics['accuracy']})"
711
+
712
+ # Save metrics
713
+ if has_tensorboard and jax.process_index() == 0:
714
+ cur_step = epoch * (len(tokenized_datasets["train"]) // train_batch_size)
715
+ write_eval_metric(summary_writer, eval_metrics, cur_step)
716
+
717
+ # if cur_step % training_args.save_steps == 0 and cur_step > 0:
718
+ # # save checkpoint after each epoch and push checkpoint to the hub
719
+ # if jax.process_index() == 0:
720
+ # params = jax.device_get(jax.tree_map(lambda x: x[0], state.params))
721
+ # model.save_pretrained(
722
+ # training_args.output_dir,
723
+ # params=params,
724
+ # push_to_hub=training_args.push_to_hub,
725
+ # commit_message=f"Saving weights and logs of step {cur_step}",
726
+ # )
727
+ # save checkpoint after eval_steps
728
+ if step % training_args.save_steps == 0 and step > 0 and jax.process_index() == 0:
729
+ logger.info(f"Saving checkpoint at {step + 1} steps")
730
+ params = jax.device_get(jax.tree_map(lambda x: x[0], state.params))
731
+ model.save_pretrained(
732
+ training_args.output_dir,
733
+ params=params,
734
+ push_to_hub=training_args.push_to_hub,
735
+ commit_message=f"Saving weights and logs of step {step}",
736
+ )
737
+ save_checkpoint_files(state, data_collator, training_args, training_args.output_dir)
738
+ checkpoints_dir = Path(training_args.output_dir) / "checkpoints" / f"checkpoint-{step}"
739
+ checkpoints_dir.mkdir(parents=True, exist_ok=True)
740
+ model.save_pretrained(checkpoints_dir, params=params,)
741
+ save_checkpoint_files(state, data_collator, training_args, checkpoints_dir)
742
+ rotate_checkpoints(
743
+ Path(training_args.output_dir) / "checkpoints",
744
+ max_checkpoints=training_args.save_total_limit
745
+ )
special_tokens_map.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]"}
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"do_lower_case": false, "unk_token": "[UNK]", "sep_token": "[SEP]", "pad_token": "[PAD]", "cls_token": "[CLS]", "mask_token": "[MASK]", "tokenize_chinese_chars": true, "strip_accents": null, "model_max_length": 512, "special_tokens_map_file": null, "name_or_path": "bert-base-multilingual-cased", "tokenizer_class": "BertTokenizer"}
training_args.joblib ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e956bb1fa794cc938aeb9584ecebdb322344ba9f4338c4a80eb6249a732f0086
3
+ size 1859
training_state.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"step": 111279}
vocab.txt ADDED
The diff for this file is too large to render. See raw diff