| """MLFlow module for trainer callbacks""" |
| import logging |
| from shutil import copyfile |
| from tempfile import NamedTemporaryFile |
| from typing import TYPE_CHECKING |
|
|
| import mlflow |
| from transformers import TrainerCallback, TrainerControl, TrainerState |
|
|
| from axolotl.utils.distributed import is_main_process |
|
|
| if TYPE_CHECKING: |
| from axolotl.core.trainer_builder import AxolotlTrainingArguments |
|
|
| LOG = logging.getLogger("axolotl.callbacks") |
|
|
|
|
| class SaveAxolotlConfigtoMlflowCallback(TrainerCallback): |
| |
| """Callback to save axolotl config to mlflow""" |
|
|
| def __init__(self, axolotl_config_path): |
| self.axolotl_config_path = axolotl_config_path |
|
|
| def on_train_begin( |
| self, |
| args: "AxolotlTrainingArguments", |
| state: TrainerState, |
| control: TrainerControl, |
| **kwargs, |
| ): |
| if is_main_process(): |
| try: |
| with NamedTemporaryFile( |
| mode="w", delete=False, suffix=".yml", prefix="axolotl_config_" |
| ) as temp_file: |
| copyfile(self.axolotl_config_path, temp_file.name) |
| mlflow.log_artifact(temp_file.name, artifact_path="") |
| LOG.info( |
| "The Axolotl config has been saved to the MLflow artifacts." |
| ) |
| except (FileNotFoundError, ConnectionError) as err: |
| LOG.warning(f"Error while saving Axolotl config to MLflow: {err}") |
| return control |
|
|