# 콜백 [[callbacks]]

콜백은 PyTorch [Trainer](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.Trainer)의 반복 학습 동작을 사용자 정의할 수 있는 객체입니다
(이 기능은 TensorFlow에서는 아직 구현되지 않았습니다). 콜백은 반복 학습의 상태를
검사하여 (진행 상황 보고, TensorBoard 또는 기타 머신 러닝 플랫폼에 로그 남기기 등) 
결정(예: 조기 종료)을 내릴 수 있습니다.

콜백은 [TrainerControl](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerControl) 객체를 반환하는 것 외에는 반복 학습에서 어떤 것도 변경할 수 없는
"읽기 전용" 코드 조각입니다. 반복 학습에 변경이 필요한 사용자 정의 작업이 필요한 경우, 
[Trainer](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.Trainer)를 서브클래스로 만들어 필요한 메소드들을 오버라이드해야 합니다 (예시는 [trainer](trainer)를 참조하세요).

기본적으로 `TrainingArguments.report_to`는 `"all"`로 설정되어 있으므로, [Trainer](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.Trainer)는 다음 콜백을 사용합니다.

- [DefaultFlowCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.DefaultFlowCallback)는 로그, 저장, 평가에 대한 기본 동작을 처리합니다.
- [PrinterCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.PrinterCallback) 또는 [ProgressCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.ProgressCallback)는 진행 상황을 표시하고 로그를 출력합니다 
  ([TrainingArguments](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.TrainingArguments)를 통해 tqdm을 비활성화하면 첫 번째 콜백이 사용되고, 그렇지 않으면 두 번째가 사용됩니다).
- [TensorBoardCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.integrations.TensorBoardCallback)는 TensorBoard가 (PyTorch >= 1.4
 또는 tensorboardX를 통해) 접근 가능하면 사용됩니다.
- [WandbCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.integrations.WandbCallback)는 [wandb](https://www.wandb.com/)가 설치되어 있으면
 사용됩니다.
- [CometCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.integrations.CometCallback)는 [comet_ml](https://www.comet.com/site/)이 설치되어 있으면 사용됩니다.
- [MLflowCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.integrations.MLflowCallback)는 [mlflow](https://www.mlflow.org/)가 설치되어 있으면 사용됩니다.
- [AzureMLCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.integrations.AzureMLCallback)는 [azureml-sdk](https://pypi.org/project/azureml-sdk/)가 설치되어
 있으면 사용됩니다.
- [CodeCarbonCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.integrations.CodeCarbonCallback)는 [codecarbon](https://pypi.org/project/codecarbon/)이 설치되어
 있으면 사용됩니다.
- [ClearMLCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.integrations.ClearMLCallback)는 [clearml](https://github.com/allegroai/clearml)이 설치되어 있으면 사용됩니다.
- [DagsHubCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.integrations.DagsHubCallback)는 [dagshub](https://dagshub.com/)이 설치되어 있으면 사용됩니다.
- [FlyteCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.integrations.FlyteCallback)는 [flyte](https://flyte.org/)가 설치되어 있으면 사용됩니다.
- [DVCLiveCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.integrations.DVCLiveCallback)는 [dvclive](https://dvc.org/doc/dvclive)가 설치되어 있으면 사용됩니다.
- [SwanLabCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.integrations.SwanLabCallback)는 [swanlab](https://swanlab.cn)가 설치되어 있으면 사용됩니다.

패키지가 설치되어 있지만 해당 통합 기능을 사용하고 싶지 않다면, `TrainingArguments.report_to`를 사용하고자 하는 통합 기능 목록으로 변경할 수 있습니다 (예: `["azure_ml", "wandb"]`).

콜백을 구현하는 주요 클래스는 [TrainerCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerCallback)입니다. 이 클래스는 [Trainer](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.Trainer)를 
인스턴스화하는 데 사용된 [TrainingArguments](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.TrainingArguments)를 가져오고, 해당 Trainer의 내부 상태를 
[TrainerState](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerState)를 통해 접근할 수 있으며, [TrainerControl](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerControl)을 통해 반복 학습에서 일부 
작업을 수행할 수 있습니다.

## 사용 가능한 콜백 [[available-callbacks]][[transformers.integrations.CometCallback]]

라이브러리에서 사용 가능한 [TrainerCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerCallback) 목록은 다음과 같습니다:

#### transformers.integrations.CometCallback[[transformers.integrations.CometCallback]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/integrations/integration_utils.py#L1054)

A [TrainerCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerCallback) that sends the logs to [Comet ML](https://www.comet.com/site/).

setuptransformers.integrations.CometCallback.setuphttps://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/integrations/integration_utils.py#L1068[{"name": "args", "val": ""}, {"name": "state", "val": ""}, {"name": "model", "val": ""}]

Setup the optional Comet integration.

Environment:
- **COMET_MODE** (`str`, *optional*, default to `get_or_create`):
  Control whether to create and log to a new Comet experiment or append to an existing experiment.
  It accepts the following values:
  * `get_or_create`: Decides automatically depending if
    `COMET_EXPERIMENT_KEY` is set and whether an Experiment
    with that key already exists or not.
  * `create`: Always create a new Comet Experiment.
  * `get`: Always try to append to an Existing Comet Experiment.
    Requires `COMET_EXPERIMENT_KEY` to be set.
- **COMET_START_ONLINE** (`bool`, *optional*):
  Whether to create an online or offline Experiment.
- **COMET_PROJECT_NAME** (`str`, *optional*):
  Comet project name for experiments.
- **COMET_LOG_ASSETS** (`str`, *optional*, defaults to `TRUE`):
  Whether or not to log training assets (checkpoints, etc), to Comet. Can be `TRUE`, or
  `FALSE`.

For a number of configurable items in the environment, see
[here](https://www.comet.com/docs/v2/guides/experiment-management/configure-sdk/#explore-comet-configuration-options).

#### transformers.DefaultFlowCallback[[transformers.DefaultFlowCallback]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L563)

A [TrainerCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerCallback) that handles the default flow of the training loop for logs, evaluation and checkpoints.

#### transformers.PrinterCallback[[transformers.PrinterCallback]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L690)

A bare [TrainerCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerCallback) that just prints the logs.

#### transformers.ProgressCallback[[transformers.ProgressCallback]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L616)

A [TrainerCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerCallback) that displays the progress of training or evaluation.
You can modify `max_str_len` to control how long strings are truncated when logging.

#### transformers.EarlyStoppingCallback[[transformers.EarlyStoppingCallback]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L703)

A [TrainerCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerCallback) that handles early stopping.

This callback depends on [TrainingArguments](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.TrainingArguments) argument *load_best_model_at_end* functionality to set best_metric
in [TrainerState](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerState). Note that if the [TrainingArguments](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.TrainingArguments) argument *save_steps* differs from *eval_steps*, the
early stopping will not occur until the next save step.

**Parameters:**

early_stopping_patience (`int`) : Use with `metric_for_best_model` to stop training when the specified metric worsens for `early_stopping_patience` evaluation calls.

early_stopping_threshold(`float`, *optional*) : Use with TrainingArguments `metric_for_best_model` and `early_stopping_patience` to denote how much the specified metric must improve to satisfy early stopping conditions. `

#### transformers.integrations.TensorBoardCallback[[transformers.integrations.TensorBoardCallback]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/integrations/integration_utils.py#L568)

A [TrainerCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerCallback) that sends the logs to [TensorBoard](https://www.tensorflow.org/tensorboard).

Environment:
- **TENSORBOARD_LOGGING_DIR** (`str`, *optional*, defaults to `None`):
  The logging dir to log the results. Default value is os.path.join(args.output_dir, default_logdir())

**Parameters:**

tb_writer (`SummaryWriter`, *optional*) : The writer to use. Will instantiate one if not set.

#### transformers.integrations.WandbCallback[[transformers.integrations.WandbCallback]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/integrations/integration_utils.py#L686)

A [TrainerCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerCallback) that logs metrics, media, model checkpoints to [Weight and Biases](https://www.wandb.com/).

setuptransformers.integrations.WandbCallback.setuphttps://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/integrations/integration_utils.py#L702[{"name": "args", "val": ""}, {"name": "state", "val": ""}, {"name": "model", "val": ""}, {"name": "**kwargs", "val": ""}]

Setup the optional Weights & Biases (*wandb*) integration.

One can subclass and override this method to customize the setup if needed. Find more information
[here](https://docs.wandb.ai/guides/integrations/huggingface). You can also override the following environment
variables:

Environment:
- **WANDB_LOG_MODEL** (`str`, *optional*, defaults to `"false"`):
  Whether to log model and checkpoints during training. Can be `"end"`, `"checkpoint"` or `"false"`. If set
  to `"end"`, the model will be uploaded at the end of training. If set to `"checkpoint"`, the checkpoint
  will be uploaded every `args.save_steps` . If set to `"false"`, the model will not be uploaded. Use along
  with `load_best_model_at_end()` to upload best model.
- **WANDB_WATCH** (`str`, *optional* defaults to `"false"`):
  Can be `"gradients"`, `"all"`, `"parameters"`, or `"false"`. Set to `"all"` to log gradients and
  parameters.
- **WANDB_PROJECT** (`str`, *optional*, defaults to `"huggingface"`):
  Set this to a custom string to store results in a different project.

#### transformers.integrations.MLflowCallback[[transformers.integrations.MLflowCallback]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/integrations/integration_utils.py#L1207)

A [TrainerCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerCallback) that sends the logs to [MLflow](https://www.mlflow.org/). Can be disabled by setting
environment variable `DISABLE_MLFLOW_INTEGRATION = TRUE`.

setuptransformers.integrations.MLflowCallback.setuphttps://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/integrations/integration_utils.py#L1226[{"name": "args", "val": ""}, {"name": "state", "val": ""}, {"name": "model", "val": ""}]

Setup the optional MLflow integration.

Environment:
- **HF_MLFLOW_LOG_ARTIFACTS** (`str`, *optional*):
  Whether to use MLflow `.log_artifact()` facility to log artifacts. This only makes sense if logging to a
  remote server, e.g. s3 or GCS. If set to `True` or *1*, will copy each saved checkpoint on each save in
  [TrainingArguments](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.TrainingArguments)'s `output_dir` to the local or remote artifact storage. Using it without a remote
  storage will just copy the files to your artifact location.
- **MLFLOW_TRACKING_URI** (`str`, *optional*):
  Whether to store runs at a specific path or remote server. Unset by default, which skips setting the
  tracking URI entirely.
- **MLFLOW_EXPERIMENT_NAME** (`str`, *optional*, defaults to `None`):
  Whether to use an MLflow experiment_name under which to launch the run. Default to `None` which will point
  to the `Default` experiment in MLflow. Otherwise, it is a case sensitive name of the experiment to be
  activated. If an experiment with this name does not exist, a new experiment with this name is created.
- **MLFLOW_TAGS** (`str`, *optional*):
  A string dump of a dictionary of key/value pair to be added to the MLflow run as tags. Example:
  `os.environ['MLFLOW_TAGS']='{"release.candidate": "RC1", "release.version": "2.2.0"}'`.
- **MLFLOW_NESTED_RUN** (`str`, *optional*):
  Whether to use MLflow nested runs. If set to `True` or *1*, will create a nested run inside the current
  run.
- **MLFLOW_RUN_ID** (`str`, *optional*):
  Allow to reattach to an existing run which can be useful when resuming training from a checkpoint. When
  `MLFLOW_RUN_ID` environment variable is set, `start_run` attempts to resume a run with the specified run ID
  and other parameters are ignored.
- **MLFLOW_FLATTEN_PARAMS** (`str`, *optional*, defaults to `False`):
  Whether to flatten the parameters dictionary before logging.
- **MLFLOW_MAX_LOG_PARAMS** (`int`, *optional*):
  Set the maximum number of parameters to log in the run.

#### transformers.integrations.AzureMLCallback[[transformers.integrations.AzureMLCallback]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/integrations/integration_utils.py#L1184)

A [TrainerCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerCallback) that sends the logs to [AzureML](https://pypi.org/project/azureml-sdk/).

#### transformers.integrations.CodeCarbonCallback[[transformers.integrations.CodeCarbonCallback]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/integrations/integration_utils.py#L1730)

A [TrainerCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerCallback) that tracks the CO2 emission of training.

#### transformers.integrations.ClearMLCallback[[transformers.integrations.ClearMLCallback]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/integrations/integration_utils.py#L1764)

A [TrainerCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerCallback) that sends the logs to [ClearML](https://clear.ml/).

Environment:
- **CLEARML_PROJECT** (`str`, *optional*, defaults to `HuggingFace Transformers`):
  ClearML project name.
- **CLEARML_TASK** (`str`, *optional*, defaults to `Trainer`):
  ClearML task name.
- **CLEARML_LOG_MODEL** (`bool`, *optional*, defaults to `False`):
  Whether to log models as artifacts during training.

#### transformers.integrations.DagsHubCallback[[transformers.integrations.DagsHubCallback]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/integrations/integration_utils.py#L1388)

A [TrainerCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerCallback) that logs to [DagsHub](https://dagshub.com/). Extends `MLflowCallback`

setuptransformers.integrations.DagsHubCallback.setuphttps://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/integrations/integration_utils.py#L1402[{"name": "*args", "val": ""}, {"name": "**kwargs", "val": ""}]

Setup the DagsHub's Logging integration.

Environment:
- **HF_DAGSHUB_LOG_ARTIFACTS** (`str`, *optional*):
  Whether to save the data and model artifacts for the experiment. Default to `False`.

#### transformers.integrations.FlyteCallback[[transformers.integrations.FlyteCallback]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/integrations/integration_utils.py#L2015)

A [TrainerCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerCallback) that sends the logs to [Flyte](https://flyte.org/).
NOTE: This callback only works within a Flyte task.

Example:

```python
# Note: This example skips over some setup steps for brevity.
from flytekit import current_context, task

@task
def train_hf_transformer():
    cp = current_context().checkpoint
    trainer = Trainer(..., callbacks=[FlyteCallback()])
    output = trainer.train(resume_from_checkpoint=cp.restore())
```

**Parameters:**

save_log_history (`bool`, *optional*, defaults to `True`) : When set to True, the training logs are saved as a Flyte Deck. 

sync_checkpoints (`bool`, *optional*, defaults to `True`) : When set to True, checkpoints are synced with Flyte and can be used to resume training in the case of an interruption.

#### transformers.integrations.DVCLiveCallback[[transformers.integrations.DVCLiveCallback]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/integrations/integration_utils.py#L2078)

A [TrainerCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerCallback) that sends the logs to [DVCLive](https://www.dvc.org/doc/dvclive).

Use the environment variables below in `setup` to configure the integration. To customize this callback beyond
those environment variables, see [here](https://dvc.org/doc/dvclive/ml-frameworks/huggingface).

setuptransformers.integrations.DVCLiveCallback.setuphttps://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/integrations/integration_utils.py#L2119[{"name": "args", "val": ""}, {"name": "state", "val": ""}, {"name": "model", "val": ""}]

Setup the optional DVCLive integration. To customize this callback beyond the environment variables below, see
[here](https://dvc.org/doc/dvclive/ml-frameworks/huggingface).

Environment:
- **HF_DVCLIVE_LOG_MODEL** (`str`, *optional*):
  Whether to use `dvclive.Live.log_artifact()` to log checkpoints created by [Trainer](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.Trainer). If set to `True` or
  *1*, the final checkpoint is logged at the end of training. If set to `all`, the entire
  [TrainingArguments](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.TrainingArguments)'s `output_dir` is logged at each checkpoint.

**Parameters:**

live (`dvclive.Live`, *optional*, defaults to `None`) : Optional Live instance. If None, a new instance will be created using **kwargs.

log_model (Union[Literal["all"], bool], *optional*, defaults to `None`) : Whether to use `dvclive.Live.log_artifact()` to log checkpoints created by [Trainer](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.Trainer). If set to `True`, the final checkpoint is logged at the end of training. If set to `"all"`, the entire [TrainingArguments](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.TrainingArguments)'s `output_dir` is logged at each checkpoint.

#### transformers.integrations.SwanLabCallback[[transformers.integrations.SwanLabCallback]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/integrations/integration_utils.py#L2183)

A [TrainerCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerCallback) that logs metrics, media, model checkpoints to [SwanLab](https://swanlab.cn/).

setuptransformers.integrations.SwanLabCallback.setuphttps://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/integrations/integration_utils.py#L2197[{"name": "args", "val": ""}, {"name": "state", "val": ""}, {"name": "model", "val": ""}, {"name": "**kwargs", "val": ""}]

Setup the optional SwanLab (*swanlab*) integration.

One can subclass and override this method to customize the setup if needed. Find more information
[here](https://docs.swanlab.cn/guide_cloud/integration/integration-huggingface-transformers.html).

You can also override the following environment variables. Find more information about environment
variables [here](https://docs.swanlab.cn/en/api/environment-variable.html#environment-variables)

Environment:
- **SWANLAB_API_KEY** (`str`, *optional*, defaults to `None`):
  Cloud API Key. During login, this environment variable is checked first. If it doesn't exist, the system
  checks if the user is already logged in. If not, the login process is initiated.

  - If a string is passed to the login interface, this environment variable is ignored.
  - If the user is already logged in, this environment variable takes precedence over locally stored
  login information.

- **SWANLAB_PROJECT** (`str`, *optional*, defaults to `None`):
  Set this to a custom string to store results in a different project. If not specified, the name of the current
  running directory is used.

- **SWANLAB_LOG_DIR** (`str`, *optional*, defaults to `swanlog`):
  This environment variable specifies the storage path for log files when running in local mode.
  By default, logs are saved in a folder named swanlog under the working directory.

- **SWANLAB_MODE** (`Literal["local", "cloud", "disabled"]`, *optional*, defaults to `cloud`):
  SwanLab's parsing mode, which involves callbacks registered by the operator. Currently, there are three modes:
  local, cloud, and disabled. Note: Case-sensitive. Find more information
  [here](https://docs.swanlab.cn/en/api/py-init.html#swanlab-init)

- **SWANLAB_LOG_MODEL** (`str`, *optional*, defaults to `None`):
  SwanLab does not currently support the save mode functionality.This feature will be available in a future
  release

- **SWANLAB_WEB_HOST** (`str`, *optional*, defaults to `None`):
  Web address for the SwanLab cloud environment for private version (its free)

- **SWANLAB_API_HOST** (`str`, *optional*, defaults to `None`):
  API address for the SwanLab cloud environment for private version (its free)

- **SWANLAB_RUN_ID** (`str`, *optional*, defaults to `None`):
  Experiment ID to resume a previous run. Use with `SWANLAB_RESUME` to continue an existing experiment.

- **SWANLAB_RESUME** (`str`, *optional*, defaults to `None`):
  Resume mode (`"must"`, `"allow"`, `"never"`). Defaults to `"allow"` when `resume_from_checkpoint` is used.

## TrainerCallback [[trainercallback]][[transformers.TrainerCallback]]

#### transformers.TrainerCallback[[transformers.TrainerCallback]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L295)

A class for objects that will inspect the state of the training loop at some events and take some decisions. At
each of those events the following arguments are available:

The `control` object is the only one that can be changed by the callback, in which case the event that changes it
should return the modified version.

The argument `args`, `state` and `control` are positionals for all events, all the others are grouped in `kwargs`.
You can unpack the ones you need in the signature of the event using them. As an example, see the code of the
simple [PrinterCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.PrinterCallback).

Example:

```python
class PrinterCallback(TrainerCallback):
    def on_log(self, args, state, control, logs=None, **kwargs):
        _ = logs.pop("total_flos", None)
        if state.is_local_process_zero:
            print(logs)
```

on_epoch_begintransformers.TrainerCallback.on_epoch_beginhttps://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L361[{"name": "args", "val": ": TrainingArguments"}, {"name": "state", "val": ": TrainerState"}, {"name": "control", "val": ": TrainerControl"}, {"name": "**kwargs", "val": ""}]

Event called at the beginning of an epoch.

**Parameters:**

args ([TrainingArguments](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.TrainingArguments)) : The training arguments used to instantiate the [Trainer](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.Trainer).

state ([TrainerState](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerState)) : The current state of the [Trainer](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.Trainer).

control ([TrainerControl](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerControl)) : The object that is returned to the [Trainer](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.Trainer) and can be used to make some decisions.

model ([PreTrainedModel](/docs/transformers/v5.3.0/ko/main_classes/model#transformers.PreTrainedModel) or `torch.nn.Module`) : The model being trained.

processing_class ([`PreTrainedTokenizer` or `BaseImageProcessor` or `ProcessorMixin` or `FeatureExtractionMixin`]) : The processing class used for encoding the data. Can be a tokenizer, a processor, an image processor or a feature extractor.

optimizer (`torch.optim.Optimizer`) : The optimizer used for the training steps.

lr_scheduler (`torch.optim.lr_scheduler.LambdaLR`) : The scheduler used for setting the learning rate.

train_dataloader (`torch.utils.data.DataLoader`, *optional*) : The current dataloader used for training.

eval_dataloader (`torch.utils.data.DataLoader`, *optional*) : The current dataloader used for evaluation.

metrics (`dict[str, float]`) : The metrics computed by the last evaluation phase.  Those are only accessible in the event `on_evaluate`.

logs  (`dict[str, float]`) : The values to log.  Those are only accessible in the event `on_log`.
#### on_epoch_end[[transformers.TrainerCallback.on_epoch_end]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L366)

Event called at the end of an epoch.
#### on_evaluate[[transformers.TrainerCallback.on_evaluate]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L398)

Event called after an evaluation phase.
#### on_init_end[[transformers.TrainerCallback.on_init_end]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L346)

Event called at the end of the initialization of the [Trainer](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.Trainer).
#### on_log[[transformers.TrainerCallback.on_log]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L413)

Event called after logging the last logs.
#### on_optimizer_step[[transformers.TrainerCallback.on_optimizer_step]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L382)

Event called after the optimizer step but before gradients are zeroed out. Useful for monitoring gradients.
#### on_pre_optimizer_step[[transformers.TrainerCallback.on_pre_optimizer_step]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L377)

Event called before the optimizer step but after gradient clipping. Useful for monitoring gradients.
#### on_predict[[transformers.TrainerCallback.on_predict]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L403)

Event called after a successful prediction.
#### on_prediction_step[[transformers.TrainerCallback.on_prediction_step]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L418)

Event called after a prediction step.
#### on_push_begin[[transformers.TrainerCallback.on_push_begin]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L423)

Event called before pushing the model to the hub, at the beginning of Trainer.push_to_hub and Trainer._push_from_checkpoint.
#### on_save[[transformers.TrainerCallback.on_save]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L408)

Event called after a checkpoint save.
#### on_step_begin[[transformers.TrainerCallback.on_step_begin]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L371)

Event called at the beginning of a training step. If using gradient accumulation, one training step might take
several inputs.
#### on_step_end[[transformers.TrainerCallback.on_step_end]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L392)

Event called at the end of a training step. If using gradient accumulation, one training step might take
several inputs.
#### on_substep_end[[transformers.TrainerCallback.on_substep_end]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L387)

Event called at the end of an substep during gradient accumulation.
#### on_train_begin[[transformers.TrainerCallback.on_train_begin]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L351)

Event called at the beginning of training.
#### on_train_end[[transformers.TrainerCallback.on_train_end]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L356)

Event called at the end of training.

여기 PyTorch [Trainer](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.Trainer)와 함께 사용자 정의 콜백을 등록하는 예시가 있습니다:

```python
class MyCallback(TrainerCallback):
    "A callback that prints a message at the beginning of training"

    def on_train_begin(self, args, state, control, **kwargs):
        print("Starting training")

trainer = Trainer(
    model,
    args,
    train_dataset=train_dataset,
    eval_dataset=eval_dataset,
    callbacks=[MyCallback],  # 우리는 콜백 클래스를 이 방식으로 전달하거나 그것의 인스턴스(MyCallback())를 전달할 수 있습니다
)
```

또 다른 콜백을 등록하는 방법은 `trainer.add_callback()`을 호출하는 것입니다:

```python
trainer = Trainer(...)
trainer.add_callback(MyCallback)
# 다른 방법으로는 콜백 클래스의 인스턴스를 전달할 수 있습니다
trainer.add_callback(MyCallback())
```

## TrainerState [[trainerstate]][[transformers.TrainerState]]

#### transformers.TrainerState[[transformers.TrainerState]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L35)

A class containing the [Trainer](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.Trainer) inner state that will be saved along the model and optimizer when checkpointing
and passed to the [TrainerCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerCallback).

In all this class, one step is to be understood as one update step. When using gradient accumulation, one update
step may require several forward and backward passes: if you use `gradient_accumulation_steps=n`, then one update
step requires going through *n* batches.

compute_stepstransformers.TrainerState.compute_stepshttps://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L156[{"name": "args", "val": ""}, {"name": "max_steps", "val": ""}]

Calculates and stores the absolute value for logging,
eval, and save steps based on if it was a proportion
or not.

**Parameters:**

epoch (`float`, *optional*) : Only set during training, will represent the epoch the training is at (the decimal part being the percentage of the current epoch completed).

global_step (`int`, *optional*, defaults to 0) : During training, represents the number of update steps completed.

max_steps (`int`, *optional*, defaults to 0) : The number of update steps to do during the current training.

logging_steps (`int`, *optional*, defaults to 500) : Log every X updates steps

eval_steps (`int`, *optional*) : Run an evaluation every X steps.

save_steps (`int`, *optional*, defaults to 500) : Save checkpoint every X updates steps.

train_batch_size (`int`, *optional*) : The batch size for the training dataloader. Only needed when `auto_find_batch_size` has been used.

num_input_tokens_seen (`int`, *optional*, defaults to 0) : When tracking the inputs tokens, the number of tokens seen during training (number of input tokens, not the number of prediction tokens).

total_flos (`float`, *optional*, defaults to 0) : The total number of floating operations done by the model since the beginning of training (stored as floats to avoid overflow).

log_history (`list[dict[str, float]]`, *optional*) : The list of logs done since the beginning of training.

best_metric (`float`, *optional*) : When tracking the best model, the value of the best metric encountered so far.

best_global_step (`int`, *optional*) : When tracking the best model, the step at which the best metric was encountered. Used for setting `best_model_checkpoint`.

best_model_checkpoint (`str`, *optional*) : When tracking the best model, the value of the name of the checkpoint for the best model encountered so far.

is_local_process_zero (`bool`, *optional*, defaults to `True`) : 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 (`bool`, *optional*, defaults to `True`) : 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).

is_hyper_param_search (`bool`, *optional*, defaults to `False`) : Whether we are in the process of a hyper parameter search using Trainer.hyperparameter_search. This will impact the way data will be logged in TensorBoard.

stateful_callbacks (`list[StatefulTrainerCallback]`, *optional*) : Callbacks attached to the `Trainer` that should have their states be saved or restored. Relevant callbacks should implement a `state` and `from_state` function.
#### init_training_references[[transformers.TrainerState.init_training_references]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L169)

Stores the initial training references needed in `self`
#### load_from_json[[transformers.TrainerState.load_from_json]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L149)

Create an instance from the content of `json_path`.
#### save_to_json[[transformers.TrainerState.save_to_json]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L143)

Save the content of this instance in JSON format inside `json_path`.

## TrainerControl [[trainercontrol]][[transformers.TrainerControl]]

#### transformers.TrainerControl[[transformers.TrainerControl]]

[Source](https://github.com/huggingface/transformers/blob/v5.3.0/src/transformers/trainer_callback.py#L234)

A class that handles the [Trainer](/docs/transformers/v5.3.0/ko/main_classes/trainer#transformers.Trainer) control flow. This class is used by the [TrainerCallback](/docs/transformers/v5.3.0/ko/main_classes/callback#transformers.TrainerCallback) to activate some
switches in the training loop.

**Parameters:**

should_training_stop (`bool`, *optional*, defaults to `False`) : Whether or not the training should be interrupted.  If `True`, this variable will not be set back to `False`. The training will just stop.

should_epoch_stop (`bool`, *optional*, defaults to `False`) : Whether or not the current epoch should be interrupted.  If `True`, this variable will be set back to `False` at the beginning of the next epoch.

should_save (`bool`, *optional*, defaults to `False`) : Whether or not the model should be saved at this step.  If `True`, this variable will be set back to `False` at the beginning of the next step.

should_evaluate (`bool`, *optional*, defaults to `False`) : Whether or not the model should be evaluated at this step.  If `True`, this variable will be set back to `False` at the beginning of the next step.

should_log (`bool`, *optional*, defaults to `False`) : Whether or not the logs should be reported at this step.  If `True`, this variable will be set back to `False` at the beginning of the next step.

