Skip to content

Commit

Permalink
fix: logging import
Browse files Browse the repository at this point in the history
  • Loading branch information
NanoCode012 committed Dec 22, 2024
1 parent d4b7786 commit 0a83b88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/axolotl/utils/data/sft.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
"""data handling specific to SFT"""

import functools
import logging
from pathlib import Path
from typing import List, Optional, Tuple, Union

from accelerate.logging import get_logger
from datasets import (
Dataset,
DatasetDict,
Expand Down Expand Up @@ -55,7 +55,7 @@
process_datasets_for_packing,
)

LOG = get_logger("axolotl")
LOG = logging.getLogger("axolotl.utils.data.sft")


@retry_on_request_exceptions(max_retries=3, delay=5)
Expand Down

0 comments on commit 0a83b88

Please sign in to comment.