Transformers documentation

Trainer

Hugging Face's logo
Join the Hugging Face community

and get access to the augmented documentation experience

to get started

Trainer

The Trainer class provides an API for feature-complete training in PyTorch, and it supports distributed training on multiple GPUs/TPUs, mixed precision for NVIDIA GPUs, AMD GPUs, and torch.amp for PyTorch. Trainer goes hand-in-hand with the TrainingArguments class, which offers a wide range of options to customize how a model is trained. Together, these two classes provide a complete training API.

Seq2SeqTrainer and Seq2SeqTrainingArguments inherit from the Trainer and TrainingArguments classes and they’re adapted for training models for sequence-to-sequence tasks such as summarization or translation.

The Trainer class is optimized for 🤗 Transformers models and can have surprising behaviors when used with other models. When using it with your own model, make sure:

Trainer

class transformers.Trainer

< >

( model: transformers.modeling_utils.PreTrainedModel | torch.nn.modules.module.Module | None = None args: transformers.training_args.TrainingArguments | None = None data_collator: collections.abc.Callable[[list[typing.Any]], dict[str, typing.Any]] | None = None train_dataset: Dataset | IterableDataset | datasets.Dataset | None = None eval_dataset: Dataset | dict[str, Dataset] | datasets.Dataset | None = None processing_class: transformers.tokenization_utils_base.PreTrainedTokenizerBase | transformers.image_processing_utils.BaseImageProcessor | transformers.feature_extraction_utils.FeatureExtractionMixin | transformers.processing_utils.ProcessorMixin | None = None model_init: collections.abc.Callable[..., transformers.modeling_utils.PreTrainedModel] | None = None compute_loss_func: collections.abc.Callable | None = None compute_metrics: collections.abc.Callable[[transformers.trainer_utils.EvalPrediction], dict] | None = None callbacks: list[transformers.trainer_callback.TrainerCallback] | None = None optimizers: tuple = (None, None) optimizer_cls_and_kwargs: tuple[type[torch.optim.optimizer.Optimizer], dict[str, typing.Any]] | None = None preprocess_logits_for_metrics: collections.abc.Callable[[torch.Tensor, torch.Tensor], torch.Tensor] | None = None )

Parameters

  • model (PreTrainedModel or torch.nn.Module, optional) — The model to train, evaluate or use for predictions. If not provided, a model_init must be passed.

    Trainer is optimized to work with the PreTrainedModel provided by the library. You can still use your own models defined as torch.nn.Module as long as they work the same way as the 🤗 Transformers models.

  • args (TrainingArguments, optional) — The arguments to tweak for training. Will default to a basic instance of TrainingArguments with the output_dir set to a directory named tmp_trainer in the current directory if not provided.
  • data_collator (DataCollator, optional) — The function to use to form a batch from a list of elements of train_dataset or eval_dataset. Will default to default_data_collator() if no processing_class is provided, an instance of DataCollatorWithPadding otherwise if the processing_class is a feature extractor or tokenizer.
  • train_dataset (torch.utils.data.Dataset | torch.utils.data.IterableDataset | datasets.Dataset, optional) — The dataset to use for training. If it is a Dataset, columns not accepted by the model.forward() method are automatically removed. Note that if it’s a torch.utils.data.IterableDataset with some randomization and you are training in a distributed fashion, your iterable dataset should either use a internal attribute generator that is a torch.Generator for the randomization that must be identical on all processes (and the Trainer will manually set the seed of this generator at each epoch) or have a set_epoch() method that internally sets the seed of the RNGs used.
  • eval_dataset (torch.utils.data.Dataset | dict[str, torch.utils.data.Dataset] | datasets.Dataset, optional) — The dataset to use for evaluation. If it is a Dataset, columns not accepted by the model.forward() method are automatically removed. If it is a dictionary, it will evaluate on each dataset prepending the dictionary key to the metric name.
  • processing_class (PreTrainedTokenizerBase or BaseImageProcessor or FeatureExtractionMixin or ProcessorMixin, optional) — Processing class used to process the data. If provided, will be used to automatically process the inputs for the model, and it will be saved along the model to make it easier to rerun an interrupted training or reuse the fine-tuned model.
  • model_init (Callable[[], PreTrainedModel], optional) — A function that instantiates the model to be used. If provided, each call to train() will start from a new instance of the model as given by this function. The function may have zero argument, or a single one containing the optuna/Ray Tune trial object, to be able to choose different architectures according to hyperparameters (such as layer count, sizes of inner layers, dropout probabilities etc).
  • compute_loss_func (Callable, optional) — A function that accepts the raw model outputs, labels, and the number of items in the entire accumulated batch (batch_size * gradient_accumulation_steps) and returns the loss. For example, see the default loss function used by Trainer.
  • compute_metrics (Callable[[EvalPrediction], Dict], optional) — The function that will be used to compute metrics at evaluation. Must take a EvalPrediction and return a dictionary string to metric values. Note When passing TrainingArgs with batch_eval_metrics set to True, your compute_metrics function must take a boolean compute_result argument. This will be triggered after the last eval batch to signal that the function needs to calculate and return the global summary statistics rather than accumulating the batch-level statistics
  • callbacks (List of TrainerCallback, optional) — A list of callbacks to customize the training loop. Will add those to the list of default callbacks detailed in here. If you want to remove one of the default callbacks used, use the Trainer.remove_callback() method.
  • optimizers (tuple[torch.optim.Optimizer, torch.optim.lr_scheduler.LambdaLR], optional, defaults to (None, None)) — A tuple containing the optimizer and the scheduler to use. Will default to an instance of AdamW on your model and a scheduler given by get_linear_schedule_with_warmup() controlled by args.
  • optimizer_cls_and_kwargs (tuple[Type[torch.optim.Optimizer], dict[str, Any]], optional) — A tuple containing the optimizer class and keyword arguments to use. Overrides optim and optim_args in args. Incompatible with the optimizers argument. Unlike optimizers, this argument avoids the need to place model parameters on the correct devices before initializing the Trainer. preprocess_logits_for_metrics (Callable[[torch.Tensor, torch.Tensor], torch.Tensor], optional) — A function that preprocess the logits right before caching them at each evaluation step. Must take two tensors, the logits and the labels, and return the logits once processed as desired. The modifications made by this function will be reflected in the predictions received by compute_metrics.

    Note that the labels (second parameter) will be None if the dataset does not have them.

    Trainer is a simple but feature-complete training and eval loop for PyTorch, optimized for 🤗 Transformers.

    Important attributes:

    add_callback

    < >

    ( callback: type[transformers.trainer_callback.TrainerCallback] | transformers.trainer_callback.TrainerCallback )

    Parameters

    • callback (type or [`~transformers.TrainerCallback]`) — A TrainerCallback class or an instance of a TrainerCallback. In the first case, will instantiate a member of that class.

    Add a callback to the current list of TrainerCallback.

    autocast_smart_context_manager

    < >

    ( cache_enabled: bool | None = True )

    A helper wrapper that creates an appropriate context manager for autocast while feeding it the desired arguments, depending on the situation. We rely on accelerate for autocast, hence we do nothing here.

    call_model_init

    < >

    ( trial: optuna.Trial | dict[str, Any] | None = None )

    Invoke model_init to get a fresh model instance, optionally conditioned on a hyperparameter trial.

    compute_loss

    < >

    ( model: Module inputs: dict return_outputs: bool = False num_items_in_batch: torch.Tensor | int | None = None )

    Parameters

    • model (nn.Module) — The model to compute the loss for.
    • inputs (dict[str, torch.Tensor | Any]) — The input data for the model.
    • return_outputs (bool, optional, defaults to False) — Whether to return the model outputs along with the loss.
    • num_items_in_batch (Optional[torch.Tensor], optional) — The number of items in the batch. If not passed, the loss is computed using the default batch size reduction logic.

    How the loss is computed by Trainer. By default, all models return the loss in the first element.

    Subclass and override for custom behavior. If you are not using num_items_in_batch when computing your loss, make sure to overwrite self.model_accepts_loss_kwargs to False. Otherwise, the loss calculation might be slightly inaccurate when performing gradient accumulation.

    compute_loss_context_manager

    < >

    ( )

    A helper wrapper to group together context managers.

    create_accelerator_and_postprocess

    < >

    ( )

    Create the accelerator and perform post-creation setup (FSDP, DeepSpeed, etc.).

    create_model_card

    < >

    ( language: str | None = None license: str | None = None tags: str | list[str] | None = None model_name: str | None = None finetuned_from: str | None = None tasks: str | list[str] | None = None dataset_tags: str | list[str] | None = None dataset: str | list[str] | None = None dataset_args: str | list[str] | None = None )

    Parameters

    • language (str, optional) — The language of the model (if applicable)
    • license (str, optional) — The license of the model. Will default to the license of the pretrained model used, if the original model given to the Trainer comes from a repo on the Hub.
    • tags (str or list[str], optional) — Some tags to be included in the metadata of the model card.
    • model_name (str, optional) — The name of the model.
    • finetuned_from (str, optional) — The name of the model used to fine-tune this one (if applicable). Will default to the name of the repo of the original model given to the Trainer (if it comes from the Hub).
    • tasks (str or list[str], optional) — One or several task identifiers, to be included in the metadata of the model card.
    • dataset_tags (str or list[str], optional) — One or several dataset tags, to be included in the metadata of the model card.
    • dataset (str or list[str], optional) — One or several dataset identifiers, to be included in the metadata of the model card.
    • dataset_args (str or list[str], optional) — One or several dataset arguments, to be included in the metadata of the model card.

    Creates a draft of a model card using the information available to the Trainer.

    create_optimizer

    < >

    ( model = None ) torch.optim.Optimizer

    Returns

    torch.optim.Optimizer

    The optimizer instance.

    Setup the optimizer.

    We provide a reasonable default that works well. If you want to use something else, you can pass a tuple in the Trainer’s init through optimizers, or subclass and override this method in a subclass.

    create_optimizer_and_scheduler

    < >

    ( num_training_steps: int )

    Setup the optimizer and the learning rate scheduler.

    We provide a reasonable default that works well. If you want to use something else, you can pass a tuple in the Trainer’s init through optimizers, or subclass and override this method (or create_optimizer and/or create_scheduler) in a subclass.

    create_scheduler

    < >

    ( num_training_steps: int optimizer: torch.optim.optimizer.Optimizer | None = None ) torch.optim.lr_scheduler.LRScheduler

    Parameters

    • num_training_steps (int) — The number of training steps to do.

    Returns

    torch.optim.lr_scheduler.LRScheduler

    The learning rate scheduler instance.

    Setup the scheduler. The optimizer of the trainer must have been set up either before this method is called or passed as an argument.

    evaluate

    < >

    ( eval_dataset: torch.utils.data.dataset.Dataset | dict[str, torch.utils.data.dataset.Dataset] | None = None ignore_keys: list[str] | None = None metric_key_prefix: str = 'eval' )

    Parameters

    • eval_dataset (Dataset | dict[str, Dataset], optional) — Pass a dataset if you wish to override self.eval_dataset. If it is a Dataset, columns not accepted by the model.forward() method are automatically removed. If it is a dictionary, it will evaluate on each dataset, prepending the dictionary key to the metric name. Datasets must implement the __len__ method.

      If you pass a dictionary with names of datasets as keys and datasets as values, evaluate will run separate evaluations on each dataset. This can be useful to monitor how training affects other datasets or simply to get a more fine-grained evaluation. When used with load_best_model_at_end, make sure metric_for_best_model references exactly one of the datasets. If you, for example, pass in {"data1": data1, "data2": data2} for two datasets data1 and data2, you could specify metric_for_best_model="eval_data1_loss" for using the loss on data1 and metric_for_best_model="eval_data2_loss" for the loss on data2.

    • ignore_keys (list[str], optional) — A list of keys in the output of your model (if it is a dictionary) that should be ignored when gathering predictions.
    • metric_key_prefix (str, optional, defaults to "eval") — An optional prefix to be used as the metrics key prefix. For example the metrics “bleu” will be named “eval_bleu” if the prefix is “eval” (default)

    Run evaluation and returns metrics.

    The calling script will be responsible for providing a method to compute metrics, as they are task-dependent (pass it to the init compute_metrics argument).

    You can also subclass and override this method to inject custom behavior.

    evaluation_loop

    < >

    ( dataloader: DataLoader description: str prediction_loss_only: bool | None = None ignore_keys: list[str] | None = None metric_key_prefix: str = 'eval' )

    Prediction/evaluation loop, shared by Trainer.evaluate() and Trainer.predict().

    Works both with or without labels.

    floating_point_ops

    < >

    ( inputs: dict ) int

    Parameters

    • inputs (dict[str, torch.Tensor | Any]) — The inputs and targets of the model.

    Returns

    int

    The number of floating-point operations.

    For models that inherit from PreTrainedModel, uses that method to compute the number of floating point operations for every backward + forward pass. If using another model, either implement such a method in the model or subclass and override this method.

    get_batch_samples

    < >

    ( epoch_iterator: Iterator num_batches: int device: device )

    Collects a specified number of batches from the epoch iterator and optionally counts the number of items in the batches to properly scale the loss.

    get_cp_size

    < >

    ( )

    Get the context parallel size

    get_decay_parameter_names

    < >

    ( model: Module )

    Get all parameter names that weight decay will be applied to.

    This function filters out parameters in two ways:

    1. By layer type (instances of layers specified in ALL_LAYERNORM_LAYERS)
    2. By parameter name patterns (containing ‘bias’, or variation of ‘norm’)

    get_eval_dataloader

    < >

    ( eval_dataset: str | torch.utils.data.dataset.Dataset | None = None )

    Parameters

    • eval_dataset (str or torch.utils.data.Dataset, optional) — If a str, will use self.eval_dataset[eval_dataset] as the evaluation dataset. If a Dataset, will override self.eval_dataset and must implement __len__. If it is a Dataset, columns not accepted by the model.forward() method are automatically removed.

    Returns the evaluation ~torch.utils.data.DataLoader.

    Subclass and override this method if you want to inject some custom behavior.

    get_learning_rates

    < >

    ( )

    Returns the learning rate of each parameter from self.optimizer.

    get_num_trainable_parameters

    < >

    ( )

    Get the number of trainable parameters.

    get_optimizer_cls_and_kwargs

    < >

    ( args: TrainingArguments model: transformers.modeling_utils.PreTrainedModel | None = None )

    Parameters

    • args (transformers.training_args.TrainingArguments) — The training arguments for the training session.
    • model (PreTrainedModel, optional) — The model being trained. Required for some optimizers (GaLore, Apollo, LOMO).

    Returns the optimizer class and optimizer parameters based on the training arguments.

    get_optimizer_group

    < >

    ( param: str | torch.nn.parameter.Parameter | None = None )

    Parameters

    • param (str or torch.nn.parameter.Parameter, optional) — The parameter for which optimizer group needs to be returned.

    Returns optimizer group for a parameter if given, else returns all optimizer groups for params.

    get_sp_size

    < >

    ( )

    Get the sequence parallel size

    get_test_dataloader

    < >

    ( test_dataset: Dataset )

    Parameters

    • test_dataset (torch.utils.data.Dataset, optional) — The test dataset to use. If it is a Dataset, columns not accepted by the model.forward() method are automatically removed. It must implement __len__.

    Returns the test ~torch.utils.data.DataLoader.

    Subclass and override this method if you want to inject some custom behavior.

    get_total_train_batch_size

    < >

    ( args: TrainingArguments )

    Calculates total batch size (micro_batch grad_accum dp_world_size).

    Accounts for all parallelism dimensions: TP, CP, and SP.

    Formula: dp_world_size = world_size // (tp_size cp_size sp_size)

    Where:

    All dimensions are separate and multiplicative: world_size = dp_size tp_size cp_size * sp_size

    get_tp_size

    < >

    ( )

    Get the tensor parallel size from either the model or DeepSpeed config.

    get_train_dataloader

    < >

    ( )

    Returns the training ~torch.utils.data.DataLoader.

    Will use no sampler if train_dataset does not implement __len__, a random sampler (adapted to distributed training if necessary) otherwise.

    Subclass and override this method if you want to inject some custom behavior.

    hyperparameter_search

    < >

    ( hp_space: collections.abc.Callable[['optuna.Trial'], dict[str, float]] | None = None compute_objective: collections.abc.Callable[[dict[str, float]], float] | None = None n_trials: int = 20 direction: str | list[str] = 'minimize' backend: str | transformers.trainer_utils.HPSearchBackend | None = None hp_name: collections.abc.Callable[['optuna.Trial'], str] | None = None **kwargs ) [trainer_utils.BestRun or list[trainer_utils.BestRun]]

    Parameters

    • hp_space (Callable[["optuna.Trial"], dict[str, float]], optional) — A function that defines the hyperparameter search space. Will default to default_hp_space_optuna() or default_hp_space_ray() depending on your backend.
    • compute_objective (Callable[[dict[str, float]], float], optional) — A function computing the objective to minimize or maximize from the metrics returned by the evaluate method. Will default to default_compute_objective().
    • n_trials (int, optional, defaults to 100) — The number of trial runs to test.
    • direction (str or list[str], optional, defaults to "minimize") — If it’s single objective optimization, direction is str, can be "minimize" or "maximize", you should pick "minimize" when optimizing the validation loss, "maximize" when optimizing one or several metrics. If it’s multi objectives optimization, direction is list[str], can be List of "minimize" and "maximize", you should pick "minimize" when optimizing the validation loss, "maximize" when optimizing one or several metrics.
    • backend (str or ~training_utils.HPSearchBackend, optional) — The backend to use for hyperparameter search. Will default to optuna or Ray Tune, depending on which one is installed. If all are installed, will default to optuna.
    • hp_name (Callable[["optuna.Trial"], str]], optional) — A function that defines the trial/run name. Will default to None.
    • kwargs (dict[str, Any], optional) — Additional keyword arguments for each backend:

    Returns

    [trainer_utils.BestRun or list[trainer_utils.BestRun]]

    All the information about the best run or best runs for multi-objective optimization. Experiment summary can be found in run_summary attribute for Ray backend.

    Launch a hyperparameter search using optuna or Ray Tune. The optimized quantity is determined by compute_objective, which defaults to a function returning the evaluation loss when no metric is provided, the sum of all metrics otherwise.

    To use this method, you need to have provided a model_init when initializing your Trainer: we need to reinitialize the model at each new run. This is incompatible with the optimizers argument, so you need to subclass Trainer and override the method create_optimizer_and_scheduler() for custom optimizer/scheduler.

    init_hf_repo

    < >

    ( token: str | None = None )

    Initializes a git repo in self.args.hub_model_id.

    is_local_process_zero

    < >

    ( )

    Whether or not this process is the local (e.g., on one machine if training in a distributed fashion on several machines) main process.

    is_world_process_zero

    < >

    ( )

    Whether or not this process is the global main process (when training in a distributed fashion on several machines, this is only going to be True for one process).

    log

    < >

    ( logs: dict start_time: float | None = None )

    Parameters

    • logs (dict[str, float]) — The values to log.
    • start_time (Optional[float]) — The start of training.

    Log logs on the various objects watching training.

    Subclass and override this method to inject custom behavior.

    log_metrics

    < >

    ( split metrics )

    Parameters

    • split (str) — Mode/split name: one of train, eval, test
    • metrics (dict[str, float]) — The metrics returned from train/evaluate/predictmetrics: metrics dict

    Log metrics in a specially formatted way.

    Under distributed environment this is done only for a process with rank 0.

    Notes on memory reports:

    In order to get memory usage report you need to install psutil. You can do that with pip install psutil.

    Now when this method is run, you will see a report that will include:

    init_mem_cpu_alloc_delta   =     1301MB
    init_mem_cpu_peaked_delta  =      154MB
    init_mem_gpu_alloc_delta   =      230MB
    init_mem_gpu_peaked_delta  =        0MB
    train_mem_cpu_alloc_delta  =     1345MB
    train_mem_cpu_peaked_delta =        0MB
    train_mem_gpu_alloc_delta  =      693MB
    train_mem_gpu_peaked_delta =        7MB

    Understanding the reports:

    The reporting happens only for process of rank 0 and gpu 0 (if there is a gpu). Typically this is enough since the main process does the bulk of work, but it could be not quite so if model parallel is used and then other GPUs may use a different amount of gpu memory. This is also not the same under DataParallel where gpu0 may require much more memory than the rest since it stores the gradient and optimizer states for all participating GPUs. Perhaps in the future these reports will evolve to measure those too.

    The CPU RAM metric measures RSS (Resident Set Size) includes both the memory which is unique to the process and the memory shared with other processes. It is important to note that it does not include swapped out memory, so the reports could be imprecise.

    The CPU peak memory is measured using a sampling thread. Due to python’s GIL it may miss some of the peak memory if that thread didn’t get a chance to run when the highest memory was used. Therefore this report can be less than reality. Using tracemalloc would have reported the exact peak memory, but it doesn’t report memory allocations outside of python. So if some C++ CUDA extension allocated its own memory it won’t be reported. And therefore it was dropped in favor of the memory sampling approach, which reads the current process memory usage.

    The GPU allocated and peak memory reporting is done with torch.cuda.memory_allocated() and torch.cuda.max_memory_allocated(). This metric reports only “deltas” for pytorch-specific allocations, as torch.cuda memory management system doesn’t track any memory allocated outside of pytorch. For example, the very first cuda call typically loads CUDA kernels, which may take from 0.5 to 2GB of GPU memory.

    Note that this tracker doesn’t account for memory allocations outside of Trainer’s __init__, train, evaluate and predict calls.

    Because evaluation calls may happen during train, we can’t handle nested invocations because torch.cuda.max_memory_allocated is a single counter, so if it gets reset by a nested eval call, train’s tracker will report incorrect info. If this pytorch issue gets resolved it will be possible to change this class to be re-entrant. Until then we will only track the outer level of train, evaluate and predict methods. Which means that if eval is called during train, it’s the latter that will account for its memory usage and that of the former.

    This also means that if any other tool that is used along the Trainer calls torch.cuda.reset_peak_memory_stats, the gpu peak memory stats could be invalid. And the Trainer will disrupt the normal behavior of any such tools that rely on calling torch.cuda.reset_peak_memory_stats themselves.

    For best performance you may want to consider turning the memory profiling off for production runs.

    metrics_format

    < >

    ( metrics: dict ) metrics (dict[str, float])

    Parameters

    • metrics (dict[str, float]) — The metrics returned from train/evaluate/predict

    Returns

    metrics (dict[str, float])

    The reformatted metrics

    Reformat Trainer metrics values to a human-readable format.

    num_examples

    < >

    ( dataloader: DataLoader )

    Helper to get number of samples in a ~torch.utils.data.DataLoader by accessing its dataset. When dataloader.dataset does not exist or has no length, estimates as best it can

    pop_callback

    < >

    ( callback: type[transformers.trainer_callback.TrainerCallback] | transformers.trainer_callback.TrainerCallback ) TrainerCallback

    Parameters

    • callback (type or [`~transformers.TrainerCallback]`) — A TrainerCallback class or an instance of a TrainerCallback. In the first case, will pop the first member of that class found in the list of callbacks.

    Returns

    TrainerCallback

    The callback removed, if found.

    Remove a callback from the current list of TrainerCallback and returns it.

    If the callback is not found, returns None (and no error is raised).

    predict

    < >

    ( test_dataset: Dataset ignore_keys: list[str] | None = None metric_key_prefix: str = 'test' )

    Parameters

    • test_dataset (Dataset) — Dataset to run the predictions on. If it is an datasets.Dataset, columns not accepted by the model.forward() method are automatically removed. Has to implement the method __len__
    • ignore_keys (list[str], optional) — A list of keys in the output of your model (if it is a dictionary) that should be ignored when gathering predictions.
    • metric_key_prefix (str, optional, defaults to "test") — An optional prefix to be used as the metrics key prefix. For example the metrics “bleu” will be named “test_bleu” if the prefix is “test” (default)

    Run prediction and returns predictions and potential metrics.

    Depending on the dataset and your use case, your test dataset may contain labels. In that case, this method will also return metrics, like in evaluate().

    If your predictions or labels have different sequence length (for instance because you’re doing dynamic padding in a token classification task) the predictions will be padded (on the right) to allow for concatenation into one array. The padding index is -100.

    Returns: NamedTuple A namedtuple with the following keys:

    prediction_step

    < >

    ( model: Module inputs: dict prediction_loss_only: bool ignore_keys: list[str] | None = None ) tuple[Optional[torch.Tensor], Optional[torch.Tensor], Optional[torch.Tensor]]

    Parameters

  • model (nn.Module) — The model to evaluate.
  • inputs (dict[str, torch.Tensor | Any]) — The inputs and targets of the model.

    The dictionary will be unpacked before being fed to the model. Most models expect the targets under the argument labels. Check your model’s documentation for all accepted arguments.

  • prediction_loss_only (bool) — Whether or not to return the loss only.
  • ignore_keys (list[str], optional) — A list of keys in the output of your model (if it is a dictionary) that should be ignored when gathering predictions.
  • Returns

    tuple[Optional[torch.Tensor], Optional[torch.Tensor], Optional[torch.Tensor]]

    A tuple with the loss, logits and labels (each being optional).

    Perform an evaluation step on model using inputs.

    Subclass and override to inject custom behavior.

    push_to_hub

    < >

    ( commit_message: str | None = 'End of training' blocking: bool = True token: str | None = None revision: str | None = None **kwargs )

    Parameters

    • commit_message (str, optional, defaults to "End of training") — Message to commit while pushing.
    • blocking (bool, optional, defaults to True) — Whether the function should return only when the git push has finished.
    • token (str, optional, defaults to None) — Token with write permission to overwrite Trainer’s original args.
    • revision (str, optional) — The git revision to commit from. Defaults to the head of the “main” branch.
    • kwargs (dict[str, Any], optional) — Additional keyword arguments passed along to create_model_card().

    Upload self.model and self.processing_class to the 🤗 model hub on the repo self.args.hub_model_id.

    remove_callback

    < >

    ( callback: type[transformers.trainer_callback.TrainerCallback] | transformers.trainer_callback.TrainerCallback )

    Parameters

    • callback (type or [`~transformers.TrainerCallback]`) — A TrainerCallback class or an instance of a TrainerCallback. In the first case, will remove the first member of that class found in the list of callbacks.

    Remove a callback from the current list of TrainerCallback.

    save_metrics

    < >

    ( split metrics combined = True )

    Parameters

    • split (str) — Mode/split name: one of train, eval, test, all
    • metrics (dict[str, float]) — The metrics returned from train/evaluate/predict
    • combined (bool, optional, defaults to True) — Creates combined metrics by updating all_results.json with metrics of this call

    Save metrics into a json file for that split, e.g. train_results.json.

    Under distributed environment this is done only for a process with rank 0.

    To understand the metrics please read the docstring of log_metrics(). The only difference is that raw unformatted numbers are saved in the current method.

    save_model

    < >

    ( output_dir: str | None = None _internal_call: bool = False )

    Will save the model, so you can reload it using from_pretrained().

    Will only save from the main process.

    save_state

    < >

    ( )

    Saves the Trainer state, since Trainer.save_model saves only the tokenizer with the model.

    Under distributed environment this is done only for a process with rank 0.

    set_initial_training_values

    < >

    ( args: TrainingArguments dataloader: DataLoader )

    Calculates and returns the following values:

    store_flos

    < >

    ( )

    Store the number of floating-point operations that went into the model.

    train

    < >

    ( resume_from_checkpoint: str | bool | None = None trial: optuna.Trial | dict[str, Any] | None = None ignore_keys_for_eval: list[str] | None = None ) TrainOutput

    Parameters

    • resume_from_checkpoint (str or bool, optional) — If a str, local path to a saved checkpoint as saved by a previous instance of Trainer. If a bool and equals True, load the last checkpoint in args.output_dir as saved by a previous instance of Trainer. If present, training will resume from the model/optimizer/scheduler states loaded here.
    • trial (optuna.Trial or dict[str, Any], optional) — The trial run or the hyperparameter dictionary for hyperparameter search.
    • ignore_keys_for_eval (list[str], optional) — A list of keys in the output of your model (if it is a dictionary) that should be ignored when gathering predictions for evaluation during the training.

    Returns

    TrainOutput

    Object containing the global step count, training loss, and metrics.

    Main training entry point.

    training_step

    < >

    ( model: Module inputs: dict num_items_in_batch: torch.Tensor | int | None = None ) torch.Tensor

    Parameters

  • model (nn.Module) — The model to train.
  • inputs (dict[str, torch.Tensor | Any]) — The inputs and targets of the model.

    The dictionary will be unpacked before being fed to the model. Most models expect the targets under the argument labels. Check your model’s documentation for all accepted arguments.

    Returns

    torch.Tensor

    The tensor with training loss on this batch.

    Perform a training step on a batch of inputs.

    Subclass and override to inject custom behavior.

    Seq2SeqTrainer

    class transformers.Seq2SeqTrainer

    < >

    ( model: typing.Union[ForwardRef('PreTrainedModel'), torch.nn.modules.module.Module, NoneType] = None args: typing.Optional[ForwardRef('TrainingArguments')] = None data_collator: typing.Optional[ForwardRef('DataCollator')] = None train_dataset: typing.Union[torch.utils.data.dataset.Dataset, ForwardRef('IterableDataset'), ForwardRef('datasets.Dataset'), NoneType] = None eval_dataset: torch.utils.data.dataset.Dataset | dict[str, torch.utils.data.dataset.Dataset] | None = None processing_class: typing.Union[ForwardRef('PreTrainedTokenizerBase'), ForwardRef('BaseImageProcessor'), ForwardRef('FeatureExtractionMixin'), ForwardRef('ProcessorMixin'), NoneType] = None model_init: collections.abc.Callable[[], 'PreTrainedModel'] | None = None compute_loss_func: collections.abc.Callable | None = None compute_metrics: collections.abc.Callable[['EvalPrediction'], dict] | None = None callbacks: list['TrainerCallback'] | None = None optimizers: tuple = (None, None) preprocess_logits_for_metrics: collections.abc.Callable[[torch.Tensor, torch.Tensor], torch.Tensor] | None = None )

    evaluate

    < >

    ( eval_dataset: torch.utils.data.dataset.Dataset | None = None ignore_keys: list[str] | None = None metric_key_prefix: str = 'eval' **gen_kwargs )

    Parameters

    • eval_dataset (Dataset, optional) — Pass a dataset if you wish to override self.eval_dataset. If it is an Dataset, columns not accepted by the model.forward() method are automatically removed. It must implement the __len__ method.
    • ignore_keys (list[str], optional) — A list of keys in the output of your model (if it is a dictionary) that should be ignored when gathering predictions.
    • metric_key_prefix (str, optional, defaults to "eval") — An optional prefix to be used as the metrics key prefix. For example the metrics “bleu” will be named “eval_bleu” if the prefix is "eval" (default)
    • max_length (int, optional) — The maximum target length to use when predicting with the generate method.
    • num_beams (int, optional) — Number of beams for beam search that will be used when predicting with the generate method. 1 means no beam search.
    • gen_kwargs — Additional generate specific kwargs.

    Run evaluation and returns metrics.

    The calling script will be responsible for providing a method to compute metrics, as they are task-dependent (pass it to the init compute_metrics argument).

    You can also subclass and override this method to inject custom behavior.

    predict

    < >

    ( test_dataset: Dataset ignore_keys: list[str] | None = None metric_key_prefix: str = 'test' **gen_kwargs )

    Parameters

    • test_dataset (Dataset) — Dataset to run the predictions on. If it is a Dataset, columns not accepted by the model.forward() method are automatically removed. Has to implement the method __len__
    • ignore_keys (list[str], optional) — A list of keys in the output of your model (if it is a dictionary) that should be ignored when gathering predictions.
    • metric_key_prefix (str, optional, defaults to "eval") — An optional prefix to be used as the metrics key prefix. For example the metrics “bleu” will be named “eval_bleu” if the prefix is "eval" (default)
    • max_length (int, optional) — The maximum target length to use when predicting with the generate method.
    • num_beams (int, optional) — Number of beams for beam search that will be used when predicting with the generate method. 1 means no beam search.
    • gen_kwargs — Additional generate specific kwargs.

    Run prediction and returns predictions and potential metrics.

    Depending on the dataset and your use case, your test dataset may contain labels. In that case, this method will also return metrics, like in evaluate().

    If your predictions or labels have different sequence lengths (for instance because you’re doing dynamic padding in a token classification task) the predictions will be padded (on the right) to allow for concatenation into one array. The padding index is -100.

    Returns: NamedTuple A namedtuple with the following keys:

    TrainingArguments

    class transformers.TrainingArguments

    < >

    ( output_dir: str | None = None per_device_train_batch_size: int = 8 num_train_epochs: float = 3.0 max_steps: int = -1 learning_rate: float = 5e-05 lr_scheduler_type: transformers.trainer_utils.SchedulerType | str = 'linear' lr_scheduler_kwargs: dict | str | None = None warmup_steps: float = 0 optim: transformers.training_args.OptimizerNames | str = 'adamw_torch_fused' optim_args: str | None = None weight_decay: float = 0.0 adam_beta1: float = 0.9 adam_beta2: float = 0.999 adam_epsilon: float = 1e-08 optim_target_modules: None | str | list[str] = None gradient_accumulation_steps: int = 1 average_tokens_across_devices: bool = True max_grad_norm: float = 1.0 label_smoothing_factor: float = 0.0 bf16: bool = False fp16: bool = False bf16_full_eval: bool = False fp16_full_eval: bool = False tf32: bool | None = None gradient_checkpointing: bool = False gradient_checkpointing_kwargs: dict[str, typing.Any] | str | None = None torch_compile: bool = False torch_compile_backend: str | None = None torch_compile_mode: str | None = None use_liger_kernel: bool = False liger_kernel_config: dict[str, bool] | None = None use_cache: bool = False neftune_noise_alpha: float | None = None torch_empty_cache_steps: int | None = None auto_find_batch_size: bool = False logging_strategy: transformers.trainer_utils.IntervalStrategy | str = 'steps' logging_steps: float = 500 logging_first_step: bool = False log_on_each_node: bool = True logging_nan_inf_filter: bool = True include_num_input_tokens_seen: str | bool = 'no' log_level: str = 'passive' log_level_replica: str = 'warning' disable_tqdm: bool | None = None report_to: None | str | list[str] = 'none' run_name: str | None = None project: str = 'huggingface' trackio_space_id: str | None = None trackio_bucket_id: str | None = None trackio_static_space_id: typing.Union[str, NoneType, typing.Literal[False]] = None eval_strategy: transformers.trainer_utils.IntervalStrategy | str = 'no' eval_steps: float | None = None eval_delay: float = 0 per_device_eval_batch_size: int = 8 prediction_loss_only: bool = False eval_on_start: bool = False eval_do_concat_batches: bool = True eval_use_gather_object: bool = False eval_accumulation_steps: int | None = None include_for_metrics: list = <factory> batch_eval_metrics: bool = False save_only_model: bool = False save_strategy: transformers.trainer_utils.SaveStrategy | str = 'steps' save_steps: float = 500 save_on_each_node: bool = False save_total_limit: int | None = None enable_jit_checkpoint: bool = False push_to_hub: bool = False hub_token: str | None = None hub_private_repo: bool | None = None hub_model_id: str | None = None hub_strategy: transformers.trainer_utils.HubStrategy | str = 'every_save' hub_always_push: bool = False hub_revision: str | None = None load_best_model_at_end: bool = False metric_for_best_model: str | None = None greater_is_better: bool | None = None ignore_data_skip: bool = False restore_callback_states_from_checkpoint: bool = False full_determinism: bool = False seed: int = 42 data_seed: int | None = None use_cpu: bool = False accelerator_config: dict | str | None = None parallelism_config: accelerate.parallelism_config.ParallelismConfig | None = None dataloader_drop_last: bool = False dataloader_num_workers: int = 0 dataloader_pin_memory: bool = True dataloader_persistent_workers: bool = False dataloader_prefetch_factor: int | None = None remove_unused_columns: bool = True label_names: list[str] | None = None train_sampling_strategy: str = 'random' length_column_name: str = 'length' ddp_find_unused_parameters: bool | None = None ddp_bucket_cap_mb: int | None = None ddp_broadcast_buffers: bool | None = None ddp_static_graph: bool | None = None ddp_backend: str | None = None ddp_timeout: int = 1800 fsdp: str | None = None fsdp_config: dict[str, typing.Any] | str | None = None deepspeed: dict | str | None = None debug: str | list[transformers.debug_utils.DebugOption] = '' skip_memory_metrics: bool = True do_train: bool = False do_eval: bool = False do_predict: bool = False resume_from_checkpoint: str | None = None warmup_ratio: float | None = None logging_dir: str | None = None local_rank: int = -1 )

    Parameters

    Training Duration and Batch Size

    Learning Rate & Scheduler

    Optimizer

    Regularization & Training Stability

    Mixed Precision Training

    Gradient Checkpointing

    Compilation

    Kernels

    Additional Optimizations

    Logging & Monitoring Training

    Logging

    Experiment Tracking Integration

    Evaluation

    Metrics Computation

    Checkpointing & Saving

    Hugging Face Hub Integration

    Best Model Tracking

    Resuming Training

    Reproducibility

    Hardware Configuration

    Accelerate Configuration

    Dataloader

  • dataloader_drop_last (bool, optional, defaults to False) — Whether to drop the last incomplete batch (if the length of the dataset is not divisible by the batch size) or not.
  • dataloader_num_workers (int, optional, defaults to 0) — Number of subprocesses to use for data loading (PyTorch only). 0 means that the data will be loaded in the main process.
  • dataloader_pin_memory (bool, optional, defaults to True) — Whether you want to pin memory in data loaders or not. Will default to True.
  • dataloader_persistent_workers (bool, optional, defaults to False) — If True, the data loader will not shut down the worker processes after a dataset has been consumed once. This allows to maintain the workers Dataset instances alive. Can potentially speed up training, but will increase RAM usage. Will default to False.
  • dataloader_prefetch_factor (int, optional) — Number of batches loaded in advance by each worker. 2 means there will be a total of 2 * num_workers batches prefetched across all workers.
  • remove_unused_columns (bool, optional, defaults to True) — Whether or not to automatically remove the columns unused by the model forward method.
  • label_names (list[str], optional) — The list of keys in your dictionary of inputs that correspond to the labels. Will eventually default to the list of argument names accepted by the model that contain the word “label”, except if the model used is one of the XxxForQuestionAnswering in which case it will also include the ["start_positions", "end_positions"] keys. You should only specify label_names if you’re using custom label names or if your model’s forward consumes multiple label tensors (e.g., extractive QA).
  • train_sampling_strategy (str, optional, defaults to "random") — The sampler to use for the training dataloader. Possible values are:

    Note: When using an IterableDataset, this argument is ignored.

  • length_column_name (str, optional, defaults to "length") — Column name for precomputed lengths. If the column exists, grouping by length will use these values rather than computing them on train startup. Ignored unless train_sampling_strategy is "group_by_length" and the dataset is an instance of Dataset.
  • DDP (DistributedDataParallel)

    FSDP (Fully Sharded Data Parallel)

    DeepSpeed

    Debugging & Profiling (Experimental)

    External Script Flags (not used by Trainer)

    Configuration class for controlling all aspects of model training with the Trainer. TrainingArguments centralizes all hyperparameters, optimization settings, logging preferences, and infrastructure choices needed for training.

    HfArgumentParser can turn this class into argparse arguments that can be specified on the command line.

    get_process_log_level

    < >

    ( )

    Returns the log level to be used depending on whether this process is the main process of node 0, main process of node non-0, or a non-main process.

    For the main process the log level defaults to the logging level set (logging.WARNING if you didn’t do anything) unless overridden by log_level argument.

    For the replica processes the log level defaults to logging.WARNING unless overridden by log_level_replica argument.

    The choice between the main and replica process settings is made according to the return value of should_log.

    get_warmup_steps

    < >

    ( num_training_steps: int )

    Get number of steps used for a linear warmup.

    main_process_first

    < >

    ( local = True desc = 'work' )

    Parameters

    • local (bool, optional, defaults to True) — if True first means process of rank 0 of each node if False first means process of rank 0 of node rank 0 In multi-node environment with a shared filesystem you most likely will want to use local=False so that only the main process of the first node will do the processing. If however, the filesystem is not shared, then the main process of each node will need to do the processing, which is the default behavior.
    • desc (str, optional, defaults to "work") — a work description to be used in debug logs

    A context manager for torch distributed environment where on needs to do something on the main process, while blocking replicas, and when it’s finished releasing the replicas.

    One such use is for datasets’s map feature which to be efficient should be run once on the main process, which upon completion saves a cached version of results and which then automatically gets loaded by the replicas.

    set_dataloader

    < >

    ( train_batch_size: int = 8 eval_batch_size: int = 8 drop_last: bool = False num_workers: int = 0 pin_memory: bool = True persistent_workers: bool = False prefetch_factor: int | None = None auto_find_batch_size: bool = False ignore_data_skip: bool = False sampler_seed: int | None = None )

    Parameters

    • drop_last (bool, optional, defaults to False) — Whether to drop the last incomplete batch (if the length of the dataset is not divisible by the batch size) or not.
    • num_workers (int, optional, defaults to 0) — Number of subprocesses to use for data loading (PyTorch only). 0 means that the data will be loaded in the main process.
    • pin_memory (bool, optional, defaults to True) — Whether you want to pin memory in data loaders or not. Will default to True.
    • persistent_workers (bool, optional, defaults to False) — If True, the data loader will not shut down the worker processes after a dataset has been consumed once. This allows to maintain the workers Dataset instances alive. Can potentially speed up training, but will increase RAM usage. Will default to False.
    • prefetch_factor (int, optional) — Number of batches loaded in advance by each worker. 2 means there will be a total of 2 * num_workers batches prefetched across all workers.
    • auto_find_batch_size (bool, optional, defaults to False) — Whether to find a batch size that will fit into memory automatically through exponential decay, avoiding CUDA Out-of-Memory errors. Requires accelerate to be installed (pip install accelerate)
    • ignore_data_skip (bool, optional, defaults to False) — When resuming training, whether or not to skip the epochs and batches to get the data loading at the same stage as in the previous training. If set to True, the training will begin faster (as that skipping step can take a long time) but will not yield the same results as the interrupted training would have.
    • sampler_seed (int, optional) — Random seed to be used with data samplers. If not set, random generators for data sampling will use the same seed as self.seed. This can be used to ensure reproducibility of data sampling, independent of the model seed.

    A method that regroups all arguments linked to the dataloaders creation.

    Example:

    >>> from transformers import TrainingArguments
    
    >>> args = TrainingArguments("working_dir")
    >>> args = args.set_dataloader(train_batch_size=16, eval_batch_size=64)
    >>> args.per_device_train_batch_size
    16

    set_evaluate

    < >

    ( strategy: str | transformers.trainer_utils.IntervalStrategy = 'no' steps: int = 500 batch_size: int = 8 accumulation_steps: int | None = None delay: float | None = None loss_only: bool = False )

    Parameters

    strategy (str or IntervalStrategy, optional, defaults to "no") — The evaluation strategy to adopt during training. Possible values are:

    Setting a strategy different from "no" will set self.do_eval to True.

  • steps (int, optional, defaults to 500) — Number of update steps between two evaluations if strategy="steps".
  • batch_size (int optional, defaults to 8) — The batch size per device (GPU/TPU core/CPU…) used for evaluation.
  • accumulation_steps (int, optional) — Number of predictions steps to accumulate the output tensors for, before moving the results to the CPU. If left unset, the whole predictions are accumulated on GPU/TPU before being moved to the CPU (faster but requires more memory).
  • delay (float, optional) — Number of epochs or steps to wait for before the first evaluation can be performed, depending on the eval_strategy.
  • loss_only (bool, optional, defaults to False) — Ignores all outputs except the loss.
  • A method that regroups all arguments linked to evaluation.

    Example:

    >>> from transformers import TrainingArguments
    
    >>> args = TrainingArguments("working_dir")
    >>> args = args.set_evaluate(strategy="steps", steps=100)
    >>> args.eval_steps
    100

    set_logging

    < >

    ( strategy: str | transformers.trainer_utils.IntervalStrategy = 'steps' steps: int = 500 report_to: str | list[str] = 'none' level: str = 'passive' first_step: bool = False nan_inf_filter: bool = False on_each_node: bool = False replica_level: str = 'passive' )

    Parameters

    • strategy (str or IntervalStrategy, optional, defaults to "steps") — The logging strategy to adopt during training. Possible values are:
      • "no": No logging is done during training.
      • "epoch": Logging is done at the end of each epoch.
      • "steps": Logging is done every logging_steps.
    • steps (int, optional, defaults to 500) — Number of update steps between two logs if strategy="steps".
    • level (str, optional, defaults to "passive") — Logger log level to use on the main process. Possible choices are the log levels as strings: "debug", "info", "warning", "error" and "critical", plus a "passive" level which doesn’t set anything and lets the application set the level.
    • report_to (str or list[str], optional, defaults to "none") — The list of integrations to report the results and logs to. Supported platforms are "azure_ml", "clearml", "codecarbon", "comet_ml", "dagshub", "dvclive", "flyte", "mlflow", "swanlab", "tensorboard", "trackio" and "wandb". Use "all" to report to all integrations installed, "none" for no integrations.
    • first_step (bool, optional, defaults to False) — Whether to log and evaluate the first global_step or not.
    • nan_inf_filter (bool, optional, defaults to True) — Whether to filter nan and inf losses for logging. If set to True the loss of every step that is nan or inf is filtered and the average loss of the current logging window is taken instead.

      nan_inf_filter only influences the logging of loss values, it does not change the behavior the gradient is computed or applied to the model.

    • on_each_node (bool, optional, defaults to True) — In multinode distributed training, whether to log using log_level once per node, or only on the main node.
    • replica_level (str, optional, defaults to "passive") — Logger log level to use on replicas. Same choices as log_level

    A method that regroups all arguments linked to logging.

    Example:

    >>> from transformers import TrainingArguments
    
    >>> args = TrainingArguments("working_dir")
    >>> args = args.set_logging(strategy="steps", steps=100)
    >>> args.logging_steps
    100

    set_lr_scheduler

    < >

    ( name: str | transformers.trainer_utils.SchedulerType = 'linear' num_epochs: float = 3.0 max_steps: int = -1 warmup_steps: float = 0 warmup_ratio: float | None = None )

    Parameters

    • name (str or SchedulerType, optional, defaults to "linear") — The scheduler type to use. See the documentation of SchedulerType for all possible values.
    • num_epochs(float, optional, defaults to 3.0) — Total number of training epochs to perform (if not an integer, will perform the decimal part percents of the last epoch before stopping training).
    • max_steps (int, optional, defaults to -1) — If set to a positive number, the total number of training steps to perform. Overrides num_train_epochs. For a finite dataset, training is reiterated through the dataset (if all data is exhausted) until max_steps is reached.
    • warmup_steps (float, optional, defaults to 0) — Number of steps used for a linear warmup from 0 to learning_rate. Should be an integer or a float in range [0,1). If smaller than 1, will be interpreted as ratio of steps used for a linear warmup from 0 to learning_rate.

    A method that regroups all arguments linked to the learning rate scheduler and its hyperparameters.

    Example:

    >>> from transformers import TrainingArguments
    
    >>> args = TrainingArguments("working_dir")
    >>> args = args.set_lr_scheduler(name="cosine", warmup_steps=0.05)
    >>> args.warmup_steps
    0.05

    set_optimizer

    < >

    ( name: str | transformers.training_args.OptimizerNames = 'adamw_torch' learning_rate: float = 5e-05 weight_decay: float = 0 beta1: float = 0.9 beta2: float = 0.999 epsilon: float = 1e-08 args: str | None = None )

    Parameters

    • name (str or training_args.OptimizerNames, optional, defaults to "adamw_torch") — The optimizer to use: "adamw_torch", "adamw_torch_fused", "adamw_anyprecision" or "adafactor".
    • learning_rate (float, optional, defaults to 5e-5) — The initial learning rate.
    • weight_decay (float, optional, defaults to 0) — The weight decay to apply (if not zero) to all layers except all bias and LayerNorm weights.
    • beta1 (float, optional, defaults to 0.9) — The beta1 hyperparameter for the adam optimizer or its variants.
    • beta2 (float, optional, defaults to 0.999) — The beta2 hyperparameter for the adam optimizer or its variants.
    • epsilon (float, optional, defaults to 1e-8) — The epsilon hyperparameter for the adam optimizer or its variants.
    • args (str, optional) — Optional arguments that are supplied to AnyPrecisionAdamW (only useful when optim="adamw_anyprecision").

    A method that regroups all arguments linked to the optimizer and its hyperparameters.

    Example:

    >>> from transformers import TrainingArguments
    
    >>> args = TrainingArguments("working_dir")
    >>> args = args.set_optimizer(name="adamw_torch", beta1=0.8)
    >>> args.optim
    'adamw_torch'

    set_push_to_hub

    < >

    ( model_id: str strategy: str | transformers.trainer_utils.HubStrategy = 'every_save' token: str | None = None private_repo: bool | None = None always_push: bool = False revision: str | None = None )

    Parameters

    • model_id (str) — The name of the repository to keep in sync with the local output_dir. It can be a simple model ID in which case the model will be pushed in your namespace. Otherwise it should be the whole repository name, for instance "user_name/model", which allows you to push to an organization you are a member of with "organization_name/model".
    • strategy (str or HubStrategy, optional, defaults to "every_save") — Defines the scope of what is pushed to the Hub and when. Possible values are:
      • "end": push the model, its configuration, the processing_class e.g. tokenizer (if passed along to the Trainer) and a draft of a model card when the save_model() method is called.
      • "every_save": push the model, its configuration, the processing_class e.g. tokenizer (if passed along to the Trainer) and a draft of a model card each time there is a model save. The pushes are asynchronous to not block training, and in case the save are very frequent, a new push is only attempted if the previous one is finished. A last push is made with the final model at the end of training.
      • "checkpoint": like "every_save" but the latest checkpoint is also pushed in a subfolder named last-checkpoint, allowing you to resume training easily with trainer.train(resume_from_checkpoint="last-checkpoint").
      • "all_checkpoints": like "checkpoint" but all checkpoints are pushed like they appear in the output folder (so you will get one checkpoint folder per folder in your final repository)
    • token (str, optional) — The token to use to push the model to the Hub. Will default to the token in the cache folder obtained with hf auth login.
    • private_repo (bool, optional, defaults to False) — Whether to make the repo private. If None (default), the repo will be public unless the organization’s default is private. This value is ignored if the repo already exists.
    • always_push (bool, optional, defaults to False) — Unless this is True, the Trainer will skip pushing a checkpoint when the previous push is not finished.
    • revision (str, optional) — The revision to use when pushing to the Hub. Can be a branch name, a tag, or a commit hash.

    A method that regroups all arguments linked to synchronizing checkpoints with the Hub.

    Calling this method will set self.push_to_hub to True, which means the output_dir will begin a git directory synced with the repo (determined by model_id) and the content will be pushed each time a save is triggered (depending on your self.save_strategy). Calling save_model() will also trigger a push.

    Example:

    >>> from transformers import TrainingArguments
    
    >>> args = TrainingArguments("working_dir")
    >>> args = args.set_push_to_hub("me/awesome-model")
    >>> args.hub_model_id
    'me/awesome-model'

    set_save

    < >

    ( strategy: str | transformers.trainer_utils.IntervalStrategy = 'steps' steps: int = 500 total_limit: int | None = None on_each_node: bool = False )

    Parameters

  • strategy (str or IntervalStrategy, optional, defaults to "steps") — The checkpoint save strategy to adopt during training. Possible values are:
    • "no": No save is done during training.
    • "epoch": Save is done at the end of each epoch.
    • "steps": Save is done every save_steps.
  • steps (int, optional, defaults to 500) — Number of updates steps before two checkpoint saves if strategy="steps".
  • total_limit (int, optional) — If a value is passed, will limit the total amount of checkpoints. Deletes the older checkpoints in output_dir.
  • on_each_node (bool, optional, defaults to False) — When doing multi-node distributed training, whether to save models and checkpoints on each node, or only on the main one.

    This should not be activated when the different nodes use the same storage as the files will be saved with the same names for each node.

    A method that regroups all arguments linked to checkpoint saving.

    Example:

    >>> from transformers import TrainingArguments
    
    >>> args = TrainingArguments("working_dir")
    >>> args = args.set_save(strategy="steps", steps=100)
    >>> args.save_steps
    100

    set_testing

    < >

    ( batch_size: int = 8 loss_only: bool = False )

    Parameters

    • batch_size (int optional, defaults to 8) — The batch size per device (GPU/TPU core/CPU…) used for testing.
    • loss_only (bool, optional, defaults to False) — Ignores all outputs except the loss.

    A method that regroups all basic arguments linked to testing on a held-out dataset.

    Calling this method will automatically set self.do_predict to True.

    Example:

    >>> from transformers import TrainingArguments
    
    >>> args = TrainingArguments("working_dir")
    >>> args = args.set_testing(batch_size=32)
    >>> args.per_device_eval_batch_size
    32

    set_training

    < >

    ( learning_rate: float = 5e-05 batch_size: int = 8 weight_decay: float = 0 num_epochs: float = 3 max_steps: int = -1 gradient_accumulation_steps: int = 1 seed: int = 42 gradient_checkpointing: bool = False )

    Parameters

    • learning_rate (float, optional, defaults to 5e-5) — The initial learning rate for the optimizer.
    • batch_size (int optional, defaults to 8) — The batch size per device (GPU/TPU core/CPU…) used for training.
    • weight_decay (float, optional, defaults to 0) — The weight decay to apply (if not zero) to all layers except all bias and LayerNorm weights in the optimizer.
    • num_train_epochs(float, optional, defaults to 3.0) — Total number of training epochs to perform (if not an integer, will perform the decimal part percents of the last epoch before stopping training).
    • max_steps (int, optional, defaults to -1) — If set to a positive number, the total number of training steps to perform. Overrides num_train_epochs. For a finite dataset, training is reiterated through the dataset (if all data is exhausted) until max_steps is reached.
    • gradient_accumulation_steps (int, optional, defaults to 1) — Number of updates steps to accumulate the gradients for, before performing a backward/update pass.

      When using gradient accumulation, one step is counted as one step with backward pass. Therefore, logging, evaluation, save will be conducted every gradient_accumulation_steps * xxx_step training examples.

    • seed (int, optional, defaults to 42) — Random seed that will be set at the beginning of training. To ensure reproducibility across runs, use the ~Trainer.model_init function to instantiate the model if it has some randomly initialized parameters.
    • gradient_checkpointing (bool, optional, defaults to False) — If True, use gradient checkpointing to save memory at the expense of slower backward pass.

    A method that regroups all basic arguments linked to the training.

    Calling this method will automatically set self.do_train to True.

    Example:

    >>> from transformers import TrainingArguments
    
    >>> args = TrainingArguments("working_dir")
    >>> args = args.set_training(learning_rate=1e-4, batch_size=32)
    >>> args.learning_rate
    1e-4

    to_dict

    < >

    ( )

    Serializes this instance while replace Enum by their values (for JSON serialization support). It obfuscates the token values by removing their value.

    to_json_string

    < >

    ( )

    Serializes this instance to a JSON string.

    to_sanitized_dict

    < >

    ( )

    Sanitized serialization to use with TensorBoard’s hparams

    Seq2SeqTrainingArguments

    class transformers.Seq2SeqTrainingArguments

    < >

    ( output_dir: str | None = None per_device_train_batch_size: int = 8 num_train_epochs: float = 3.0 max_steps: int = -1 learning_rate: float = 5e-05 lr_scheduler_type: transformers.trainer_utils.SchedulerType | str = 'linear' lr_scheduler_kwargs: dict | str | None = None warmup_steps: float = 0 optim: transformers.training_args.OptimizerNames | str = 'adamw_torch_fused' optim_args: str | None = None weight_decay: float = 0.0 adam_beta1: float = 0.9 adam_beta2: float = 0.999 adam_epsilon: float = 1e-08 optim_target_modules: None | str | list[str] = None gradient_accumulation_steps: int = 1 average_tokens_across_devices: bool = True max_grad_norm: float = 1.0 label_smoothing_factor: float = 0.0 bf16: bool = False fp16: bool = False bf16_full_eval: bool = False fp16_full_eval: bool = False tf32: bool | None = None gradient_checkpointing: bool = False gradient_checkpointing_kwargs: dict[str, typing.Any] | str | None = None torch_compile: bool = False torch_compile_backend: str | None = None torch_compile_mode: str | None = None use_liger_kernel: bool = False liger_kernel_config: dict[str, bool] | None = None use_cache: bool = False neftune_noise_alpha: float | None = None torch_empty_cache_steps: int | None = None auto_find_batch_size: bool = False logging_strategy: transformers.trainer_utils.IntervalStrategy | str = 'steps' logging_steps: float = 500 logging_first_step: bool = False log_on_each_node: bool = True logging_nan_inf_filter: bool = True include_num_input_tokens_seen: str | bool = 'no' log_level: str = 'passive' log_level_replica: str = 'warning' disable_tqdm: bool | None = None report_to: None | str | list[str] = 'none' run_name: str | None = None project: str = 'huggingface' trackio_space_id: str | None = None trackio_bucket_id: str | None = None trackio_static_space_id: typing.Union[str, NoneType, typing.Literal[False]] = None eval_strategy: transformers.trainer_utils.IntervalStrategy | str = 'no' eval_steps: float | None = None eval_delay: float = 0 per_device_eval_batch_size: int = 8 prediction_loss_only: bool = False eval_on_start: bool = False eval_do_concat_batches: bool = True eval_use_gather_object: bool = False eval_accumulation_steps: int | None = None include_for_metrics: list = <factory> batch_eval_metrics: bool = False save_only_model: bool = False save_strategy: transformers.trainer_utils.SaveStrategy | str = 'steps' save_steps: float = 500 save_on_each_node: bool = False save_total_limit: int | None = None enable_jit_checkpoint: bool = False push_to_hub: bool = False hub_token: str | None = None hub_private_repo: bool | None = None hub_model_id: str | None = None hub_strategy: transformers.trainer_utils.HubStrategy | str = 'every_save' hub_always_push: bool = False hub_revision: str | None = None load_best_model_at_end: bool = False metric_for_best_model: str | None = None greater_is_better: bool | None = None ignore_data_skip: bool = False restore_callback_states_from_checkpoint: bool = False full_determinism: bool = False seed: int = 42 data_seed: int | None = None use_cpu: bool = False accelerator_config: dict | str | None = None parallelism_config: accelerate.parallelism_config.ParallelismConfig | None = None dataloader_drop_last: bool = False dataloader_num_workers: int = 0 dataloader_pin_memory: bool = True dataloader_persistent_workers: bool = False dataloader_prefetch_factor: int | None = None remove_unused_columns: bool = True label_names: list[str] | None = None train_sampling_strategy: str = 'random' length_column_name: str = 'length' ddp_find_unused_parameters: bool | None = None ddp_bucket_cap_mb: int | None = None ddp_broadcast_buffers: bool | None = None ddp_static_graph: bool | None = None ddp_backend: str | None = None ddp_timeout: int = 1800 fsdp: str | None = None fsdp_config: dict[str, typing.Any] | str | None = None deepspeed: dict | str | None = None debug: str | list[transformers.debug_utils.DebugOption] = '' skip_memory_metrics: bool = True do_train: bool = False do_eval: bool = False do_predict: bool = False resume_from_checkpoint: str | None = None warmup_ratio: float | None = None logging_dir: str | None = None local_rank: int = -1 sortish_sampler: bool = False predict_with_generate: bool = False generation_max_length: int | None = None generation_num_beams: int | None = None generation_config: str | pathlib.Path | transformers.generation.configuration_utils.GenerationConfig | None = None )

    Parameters

    Training Duration and Batch Size

    Learning Rate & Scheduler

    Optimizer

    Regularization & Training Stability

    Mixed Precision Training

    Gradient Checkpointing

    Compilation

    Kernels

    Additional Optimizations

    Logging & Monitoring Training

    Logging

    Experiment Tracking Integration

    Evaluation

    Metrics Computation

    Checkpointing & Saving

    Hugging Face Hub Integration

    Best Model Tracking

    Resuming Training

    Reproducibility

    Hardware Configuration

    Accelerate Configuration

    Dataloader

  • dataloader_drop_last (bool, optional, defaults to False) — Whether to drop the last incomplete batch (if the length of the dataset is not divisible by the batch size) or not.
  • dataloader_num_workers (int, optional, defaults to 0) — Number of subprocesses to use for data loading (PyTorch only). 0 means that the data will be loaded in the main process.
  • dataloader_pin_memory (bool, optional, defaults to True) — Whether you want to pin memory in data loaders or not. Will default to True.
  • dataloader_persistent_workers (bool, optional, defaults to False) — If True, the data loader will not shut down the worker processes after a dataset has been consumed once. This allows to maintain the workers Dataset instances alive. Can potentially speed up training, but will increase RAM usage. Will default to False.
  • dataloader_prefetch_factor (int, optional) — Number of batches loaded in advance by each worker. 2 means there will be a total of 2 * num_workers batches prefetched across all workers.
  • remove_unused_columns (bool, optional, defaults to True) — Whether or not to automatically remove the columns unused by the model forward method.
  • label_names (list[str], optional) — The list of keys in your dictionary of inputs that correspond to the labels. Will eventually default to the list of argument names accepted by the model that contain the word “label”, except if the model used is one of the XxxForQuestionAnswering in which case it will also include the ["start_positions", "end_positions"] keys. You should only specify label_names if you’re using custom label names or if your model’s forward consumes multiple label tensors (e.g., extractive QA).
  • train_sampling_strategy (str, optional, defaults to "random") — The sampler to use for the training dataloader. Possible values are:

    Note: When using an IterableDataset, this argument is ignored.

  • length_column_name (str, optional, defaults to "length") — Column name for precomputed lengths. If the column exists, grouping by length will use these values rather than computing them on train startup. Ignored unless train_sampling_strategy is "group_by_length" and the dataset is an instance of Dataset.
  • DDP (DistributedDataParallel)

    FSDP (Fully Sharded Data Parallel)

    DeepSpeed

    Debugging & Profiling (Experimental)

    External Script Flags (not used by Trainer)

  • do_train (bool, optional, defaults to False) — Whether to run training or not. This argument is not directly used by Trainer, it’s intended to be used by your training/evaluation scripts instead. See the example scripts for more details.
  • do_eval (bool, optional) — Whether to run evaluation on the validation set or not. Will be set to True if eval_strategy is different from "no". This argument is not directly used by Trainer, it’s intended to be used by your training/evaluation scripts instead. See the example scripts for more details.
  • do_predict (bool, optional, defaults to False) — Whether to run predictions on the test set or not. This argument is not directly used by Trainer, it’s intended to be used by your training/evaluation scripts instead. See the example scripts for more details.
  • resume_from_checkpoint (str, optional) — The path to a folder with a valid checkpoint for your model. This argument is not directly used by Trainer, it’s intended to be used by your training/evaluation scripts instead. See the example scripts for more details.
  • sortish_sampler (bool, optional, defaults to False) — Whether to use a sortish sampler or not. Only possible if the underlying datasets are Seq2SeqDataset for now but will become generally available in the near future.

    It sorts the inputs according to lengths in order to minimize the padding size, with a bit of randomness for the training set.

  • predict_with_generate (bool, optional, defaults to False) — Whether to use generate to calculate generative metrics (ROUGE, BLEU).
  • generation_max_length (int, optional) — The max_length to use on each evaluation loop when predict_with_generate=True. Will default to the max_length value of the model configuration.
  • generation_num_beams (int, optional) — The num_beams to use on each evaluation loop when predict_with_generate=True. Will default to the num_beams value of the model configuration.
  • generation_config (str or Path or GenerationConfig, optional) — Allows to load a GenerationConfig from the from_pretrained method. This can be either:
    • a string, the model id of a pretrained model configuration hosted inside a model repo on huggingface.co.
    • a path to a directory containing a configuration file saved using the save_pretrained() method, e.g., ./my_model_directory/.
    • a GenerationConfig object.
  • Configuration class for controlling all aspects of model training with the Trainer. TrainingArguments centralizes all hyperparameters, optimization settings, logging preferences, and infrastructure choices needed for training.

    HfArgumentParser can turn this class into argparse arguments that can be specified on the command line.

    to_dict

    < >

    ( )

    Serializes this instance while replace Enum by their values and GenerationConfig by dictionaries (for JSON serialization support). It obfuscates the token values by removing their value.

    Update on GitHub

    Tokenizer DeepSpeed