|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
""" |
|
Fine-tuning the library models for causal language modeling (GPT, GPT-2, CTRL, ...) on a text file or a dataset. |
|
|
|
Here is the full list of checkpoints on the hub that can be fine-tuned by this script: |
|
https://huggingface.co/models?filter=causal-lm |
|
""" |
|
|
|
|
|
import logging |
|
import math |
|
import os |
|
import sys |
|
from dataclasses import dataclass, field |
|
from typing import Optional |
|
|
|
import torch.distributed |
|
from datasets import load_dataset |
|
|
|
import transformers |
|
from transformers import ( |
|
CONFIG_MAPPING, |
|
MODEL_FOR_CAUSAL_LM_MAPPING, |
|
AutoConfig, |
|
AutoModelForCausalLM, |
|
AutoTokenizer, |
|
HfArgumentParser, |
|
Trainer, |
|
TrainingArguments, |
|
default_data_collator, |
|
set_seed, |
|
) |
|
from transformers.testing_utils import CaptureLogger |
|
from transformers.trainer_utils import get_last_checkpoint, is_main_process |
|
from transformers.utils import check_min_version |
|
|
|
|
|
import os |
|
currentdir = os.path.dirname(os.path.realpath(__file__)) |
|
parentdir = os.path.dirname(currentdir) |
|
sys.path.append(parentdir) |
|
|
|
|
|
from models.decoder_only_t5 import DecoderOnlyT5Config, DecoderOnlyT5LMHeadModel |
|
|
|
CONFIG_MAPPING["decoder_only_t5"] = DecoderOnlyT5Config |
|
MODEL_FOR_CAUSAL_LM_MAPPING[DecoderOnlyT5Config] = DecoderOnlyT5LMHeadModel |
|
|
|
|
|
from custom_callbacks import LogFlosCallback, TensorBoardFloIndexedCallback |
|
|
|
check_min_version("4.6.0.dev0") |
|
|
|
logging.basicConfig( |
|
format="%(asctime)s - %(levelname)s - %(process)d - %(name)s - %(message)s", |
|
datefmt="%m/%d/%Y %H:%M:%S", |
|
level=logging.INFO, |
|
) |
|
logger = logging.getLogger(__name__) |
|
|
|
|
|
MODEL_CONFIG_CLASSES = list(MODEL_FOR_CAUSAL_LM_MAPPING.keys()) |
|
MODEL_TYPES = tuple(conf.model_type for conf in MODEL_CONFIG_CLASSES) |
|
|
|
|
|
@dataclass |
|
class ModelArguments: |
|
""" |
|
Arguments pertaining to which model/config/tokenizer we are going to fine-tune, or train from scratch. |
|
""" |
|
|
|
model_name_or_path: Optional[str] = field( |
|
default=None, |
|
metadata={ |
|
"help": "The model checkpoint for weights initialization." |
|
"Don't set if you want to train a model from scratch." |
|
}, |
|
) |
|
model_type: Optional[str] = field( |
|
default=None, |
|
metadata={"help": "If training from scratch, pass a model type from the list: " + ", ".join(MODEL_TYPES)}, |
|
) |
|
config_name: Optional[str] = field( |
|
default=None, metadata={"help": "Pretrained config name or path if not the same as model_name"} |
|
) |
|
tokenizer_name: Optional[str] = field( |
|
default=None, metadata={"help": "Pretrained tokenizer name or path if not the same as model_name"} |
|
) |
|
cache_dir: Optional[str] = field( |
|
default=None, |
|
metadata={"help": "Where do you want to store the pretrained models downloaded from huggingface.co"}, |
|
) |
|
use_fast_tokenizer: bool = field( |
|
default=True, |
|
metadata={"help": "Whether to use one of the fast tokenizer (backed by the tokenizers library) or not."}, |
|
) |
|
model_revision: str = field( |
|
default="main", |
|
metadata={"help": "The specific model version to use (can be a branch name, tag name or commit id)."}, |
|
) |
|
use_auth_token: bool = field( |
|
default=False, |
|
metadata={ |
|
"help": "Will use the token generated when running `huggingface-cli login` (necessary to use this script " |
|
"with private models)." |
|
}, |
|
) |
|
|
|
|
|
@dataclass |
|
class ConfigArguments: |
|
""" |
|
Arguments defining the new model we're about to train when training from scratch |
|
""" |
|
|
|
n_ctx: Optional[int] = field(default=1024, metadata={"help": "Dimensionality of the causal mask"}) |
|
n_embd: Optional[int] = field( |
|
default=768, metadata={"help": "Dimensionality of the embeddings and hidden states."} |
|
) |
|
n_layer: Optional[int] = field(default=12, metadata={"help": "Number of hidden layers."}) |
|
n_head: Optional[int] = field(default=12, metadata={"help": "Number of attention heads for each attention layer."}) |
|
n_inner: Optional[int] = field(default=None, metadata={"help": "Dimensionality of the inner feed-forward layers."}) |
|
|
|
|
|
@dataclass |
|
class DataTrainingArguments: |
|
""" |
|
Arguments pertaining to what data we are going to input our model for training and eval. |
|
""" |
|
|
|
sanity: bool = field( |
|
default=False, metadata={"help": "Only use fraction of the dataset"} |
|
) |
|
dataset_name: Optional[str] = field( |
|
default=None, metadata={"help": "The name of the dataset to use (via the datasets library)."} |
|
) |
|
dataset_config_name: Optional[str] = field( |
|
default=None, metadata={"help": "The configuration name of the dataset to use (via the datasets library)."} |
|
) |
|
train_file: Optional[str] = field(default=None, metadata={"help": "The input training data file (a text file)."}) |
|
validation_file: Optional[str] = field( |
|
default=None, |
|
metadata={"help": "An optional input evaluation data file to evaluate the perplexity on (a text file)."}, |
|
) |
|
max_train_samples: Optional[int] = field( |
|
default=None, |
|
metadata={ |
|
"help": "For debugging purposes or quicker training, truncate the number of training examples to this " |
|
"value if set." |
|
}, |
|
) |
|
max_val_samples: Optional[int] = field( |
|
default=None, |
|
metadata={ |
|
"help": "For debugging purposes or quicker training, truncate the number of validation examples to this " |
|
"value if set." |
|
}, |
|
) |
|
|
|
block_size: Optional[int] = field( |
|
default=None, |
|
metadata={ |
|
"help": "Optional input sequence length after tokenization. " |
|
"The training dataset will be truncated in block of this size for training. " |
|
"Default to the model max input length for single sentence inputs (take into account special tokens)." |
|
}, |
|
) |
|
overwrite_cache: bool = field( |
|
default=False, metadata={"help": "Overwrite the cached training and evaluation sets"} |
|
) |
|
validation_split_percentage: Optional[int] = field( |
|
default=5, |
|
metadata={ |
|
"help": "The percentage of the train set used as validation set in case there's no validation split" |
|
}, |
|
) |
|
preprocessing_num_workers: Optional[int] = field( |
|
default=None, |
|
metadata={"help": "The number of processes to use for the preprocessing."}, |
|
) |
|
|
|
def __post_init__(self): |
|
if self.dataset_name is None and self.train_file is None and self.validation_file is None: |
|
raise ValueError("Need either a dataset name or a training/validation file.") |
|
else: |
|
if self.train_file is not None: |
|
extension = self.train_file.split(".")[-1] |
|
assert extension in ["csv", "json", "txt"], "`train_file` should be a csv, a json or a txt file." |
|
if self.validation_file is not None: |
|
extension = self.validation_file.split(".")[-1] |
|
assert extension in ["csv", "json", "txt"], "`validation_file` should be a csv, a json or a txt file." |
|
|
|
|
|
def main(): |
|
|
|
|
|
|
|
|
|
parser = HfArgumentParser((ModelArguments, DataTrainingArguments, TrainingArguments, ConfigArguments)) |
|
if len(sys.argv) == 2 and sys.argv[1].endswith(".json"): |
|
|
|
|
|
model_args, data_args, training_args, config_args = parser.parse_json_file( |
|
json_file=os.path.abspath(sys.argv[1]) |
|
) |
|
else: |
|
model_args, data_args, training_args, config_args = parser.parse_args_into_dataclasses() |
|
|
|
|
|
last_checkpoint = None |
|
if os.path.isdir(training_args.output_dir) and training_args.do_train and not training_args.overwrite_output_dir: |
|
last_checkpoint = get_last_checkpoint(training_args.output_dir) |
|
if last_checkpoint is None and len(os.listdir(training_args.output_dir)) > 0: |
|
raise ValueError( |
|
f"Output directory ({training_args.output_dir}) already exists and is not empty. " |
|
"Use --overwrite_output_dir to overcome." |
|
) |
|
elif last_checkpoint is not None: |
|
logger.info( |
|
f"Checkpoint detected, resuming training at {last_checkpoint}. To avoid this behavior, change " |
|
"the `--output_dir` or add `--overwrite_output_dir` to train from scratch." |
|
) |
|
|
|
|
|
logging.basicConfig( |
|
format="%(asctime)s - %(levelname)s - %(name)s - %(message)s", |
|
datefmt="%m/%d/%Y %H:%M:%S", |
|
handlers=[logging.StreamHandler(sys.stdout)], |
|
) |
|
logger.setLevel(logging.INFO if is_main_process(training_args.local_rank) else logging.WARN) |
|
|
|
|
|
logger.warning( |
|
f"Process rank: {training_args.local_rank}, device: {training_args.device}, n_gpu: {training_args.n_gpu}" |
|
+ f"distributed training: {bool(training_args.local_rank != -1)}, 16-bits training: {training_args.fp16}" |
|
) |
|
|
|
if is_main_process(training_args.local_rank): |
|
transformers.utils.logging.set_verbosity_info() |
|
transformers.utils.logging.enable_default_handler() |
|
transformers.utils.logging.enable_explicit_format() |
|
logger.info(f"Training/evaluation parameters {training_args}") |
|
|
|
|
|
set_seed(training_args.seed) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if data_args.dataset_name is not None: |
|
|
|
datasets = load_dataset(data_args.dataset_name, data_args.dataset_config_name, keep_in_memory=False, cache_dir=model_args.cache_dir) |
|
if "validation" not in datasets.keys(): |
|
datasets["validation"] = load_dataset( |
|
data_args.dataset_name, |
|
data_args.dataset_config_name, |
|
split=f"train[:{data_args.validation_split_percentage}%]", |
|
keep_in_memory=False, |
|
cache_dir=model_args.cache_dir |
|
) |
|
datasets["train"] = load_dataset( |
|
data_args.dataset_name, |
|
data_args.dataset_config_name, |
|
split=f"train[{data_args.validation_split_percentage}%:]", |
|
keep_in_memory=False, |
|
cache_dir=model_args.cache_dir |
|
) |
|
else: |
|
data_files = {} |
|
if data_args.train_file is not None: |
|
data_files["train"] = data_args.train_file |
|
if data_args.validation_file is not None: |
|
data_files["validation"] = data_args.validation_file |
|
extension = ( |
|
data_args.train_file.split(".")[-1] |
|
if data_args.train_file is not None |
|
else data_args.validation_file.split(".")[-1] |
|
) |
|
if extension == "txt": |
|
extension = "text" |
|
datasets = load_dataset(extension, data_files=data_files, keep_in_memory=False, cache_dir=model_args.cache_dir) |
|
if data_args.sanity: |
|
datasets["train"] = datasets["train"].shard(100, index=0, contiguous=True) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
config_kwargs = { |
|
"cache_dir": model_args.cache_dir, |
|
"revision": model_args.model_revision, |
|
"use_auth_token": True if model_args.use_auth_token else None, |
|
} |
|
if model_args.config_name: |
|
config = AutoConfig.from_pretrained(model_args.config_name, **config_kwargs) |
|
elif model_args.model_name_or_path: |
|
config = AutoConfig.from_pretrained(model_args.model_name_or_path, **config_kwargs) |
|
else: |
|
config = CONFIG_MAPPING[model_args.model_type](**vars(config_args), **config_kwargs) |
|
logger.warning("You are instantiating a new config instance from scratch.") |
|
|
|
tokenizer_kwargs = { |
|
"cache_dir": model_args.cache_dir, |
|
"use_fast": model_args.use_fast_tokenizer, |
|
"revision": model_args.model_revision, |
|
"use_auth_token": True if model_args.use_auth_token else None, |
|
} |
|
if model_args.tokenizer_name: |
|
tokenizer = AutoTokenizer.from_pretrained(model_args.tokenizer_name, **tokenizer_kwargs) |
|
elif model_args.model_name_or_path: |
|
tokenizer = AutoTokenizer.from_pretrained(model_args.model_name_or_path, **tokenizer_kwargs) |
|
else: |
|
raise ValueError( |
|
"You are instantiating a new tokenizer from scratch. This is not supported by this script." |
|
"You can do it from another script, save it, and load it from here, using --tokenizer_name." |
|
) |
|
|
|
if model_args.model_name_or_path: |
|
model = AutoModelForCausalLM.from_pretrained( |
|
model_args.model_name_or_path, |
|
from_tf=bool(".ckpt" in model_args.model_name_or_path), |
|
config=config, |
|
cache_dir=model_args.cache_dir, |
|
revision=model_args.model_revision, |
|
use_auth_token=True if model_args.use_auth_token else None, |
|
) |
|
else: |
|
logger.info("Training new model from scratch") |
|
model = AutoModelForCausalLM.from_config(config) |
|
|
|
model.resize_token_embeddings(len(tokenizer)) |
|
|
|
|
|
|
|
if training_args.do_train: |
|
column_names = datasets["train"].column_names |
|
else: |
|
column_names = datasets["validation"].column_names |
|
text_column_name = "text" if "text" in column_names else column_names[0] |
|
|
|
|
|
tok_logger = transformers.utils.logging.get_logger("transformers.tokenization_utils_base") |
|
|
|
datasets = datasets.shuffle() |
|
def tokenize_function(examples): |
|
with CaptureLogger(tok_logger) as cl: |
|
output = tokenizer(examples[text_column_name]) |
|
|
|
if "Token indices sequence length is longer than the" in cl.out: |
|
tok_logger.warning( |
|
"^^^^^^^^^^^^^^^^ Please ignore the warning above - this long input will be chunked into smaller bits before being passed to the model." |
|
) |
|
return output |
|
|
|
|
|
if not is_main_process(training_args.local_rank): |
|
print("waiting for main process to execute mapping") |
|
torch.distributed.barrier() |
|
|
|
logger.info("Mapping dataset to tokenized dataset.",) |
|
tokenized_datasets = datasets.map( |
|
tokenize_function, |
|
batched=True, |
|
num_proc=data_args.preprocessing_num_workers, |
|
remove_columns=column_names, |
|
load_from_cache_file=not data_args.overwrite_cache, |
|
keep_in_memory=False |
|
) |
|
|
|
if data_args.block_size is None: |
|
block_size = tokenizer.model_max_length |
|
if block_size > 1024: |
|
logger.warning( |
|
f"The tokenizer picked seems to have a very large `model_max_length` ({tokenizer.model_max_length}). " |
|
"Picking 1024 instead. You can change that default value by passing --block_size xxx." |
|
) |
|
block_size = 1024 |
|
else: |
|
if data_args.block_size > tokenizer.model_max_length: |
|
logger.warning( |
|
f"The block_size passed ({data_args.block_size}) is larger than the maximum length for the model" |
|
f"({tokenizer.model_max_length}). Using block_size={tokenizer.model_max_length}." |
|
) |
|
|
|
block_size = data_args.block_size |
|
|
|
|
|
def group_texts(examples): |
|
|
|
concatenated_examples = {k: sum(examples[k], []) for k in examples.keys()} |
|
total_length = len(concatenated_examples[list(examples.keys())[0]]) |
|
|
|
|
|
total_length = (total_length // block_size) * block_size |
|
|
|
result = { |
|
k: [t[i : i + block_size] for i in range(0, total_length, block_size)] |
|
for k, t in concatenated_examples.items() |
|
} |
|
result["labels"] = result["input_ids"].copy() |
|
return result |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
logger.info("Chunking tokenized dataset.") |
|
lm_datasets = tokenized_datasets.map( |
|
group_texts, |
|
batched=True, |
|
num_proc=data_args.preprocessing_num_workers, |
|
load_from_cache_file=not data_args.overwrite_cache, |
|
keep_in_memory=False |
|
) |
|
|
|
|
|
if training_args.local_rank != -1 and is_main_process(training_args.local_rank): |
|
print("loading results from main process") |
|
torch.distributed.barrier() |
|
|
|
if training_args.do_train: |
|
if "train" not in tokenized_datasets: |
|
raise ValueError("--do_train requires a train dataset") |
|
train_dataset = lm_datasets["train"] |
|
if data_args.max_train_samples is not None: |
|
train_dataset = train_dataset.select(range(data_args.max_train_samples)) |
|
|
|
if training_args.do_eval: |
|
if "validation" not in tokenized_datasets: |
|
cutoff = data_args.validation_split_percentage * len(lm_datasets["train"]) // 100 |
|
train_dataset = lm_datasets["train"].select(range(cutoff, len(lm_datasets["train"]))) |
|
eval_dataset = lm_datasets["train"].select(range(cutoff)) |
|
else: |
|
eval_dataset = lm_datasets["validation"] |
|
if data_args.max_val_samples is not None: |
|
eval_dataset = eval_dataset.select(range(data_args.max_val_samples)) |
|
|
|
|
|
|
|
trainer = Trainer( |
|
model=model, |
|
args=training_args, |
|
train_dataset=train_dataset if training_args.do_train else None, |
|
eval_dataset=eval_dataset if training_args.do_eval else None, |
|
tokenizer=tokenizer, |
|
|
|
data_collator=default_data_collator, |
|
callbacks=[LogFlosCallback, TensorBoardFloIndexedCallback] |
|
) |
|
|
|
|
|
if training_args.do_train: |
|
checkpoint = None |
|
if training_args.resume_from_checkpoint is not None: |
|
checkpoint = training_args.resume_from_checkpoint |
|
elif last_checkpoint is not None: |
|
checkpoint = last_checkpoint |
|
|
|
train_result = trainer.train(resume_from_checkpoint=checkpoint) |
|
trainer.save_model() |
|
|
|
metrics = train_result.metrics |
|
|
|
max_train_samples = ( |
|
data_args.max_train_samples if data_args.max_train_samples is not None else len(train_dataset) |
|
) |
|
metrics["train_samples"] = min(max_train_samples, len(train_dataset)) |
|
|
|
trainer.log_metrics("train", metrics) |
|
trainer.save_metrics("train", metrics) |
|
trainer.save_state() |
|
|
|
|
|
if training_args.do_eval: |
|
logger.info("*** Evaluate ***") |
|
|
|
metrics = trainer.evaluate() |
|
|
|
metrics["eval_samples"] = len(eval_dataset) |
|
perplexity = math.exp(metrics["eval_loss"]) |
|
metrics["perplexity"] = perplexity |
|
|
|
trainer.log_metrics("eval", metrics) |
|
trainer.save_metrics("eval", metrics) |
|
|
|
|
|
def _mp_fn(index): |
|
|
|
main() |
|
|
|
|
|
if __name__ == "__main__": |
|
main() |
|
|