Skip to content

Commit

Permalink
fix: CACHE_DIR Default Value in Accelerate Pipeline (#461)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryan-minato authored Dec 19, 2024
1 parent 0977fde commit c45e3c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lighteval/main_accelerate.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
logger = logging.getLogger(__name__)

TOKEN = os.getenv("HF_TOKEN")
CACHE_DIR: str = os.getenv("HF_HOME", "/scratch")
CACHE_DIR: str = os.getenv("HF_HOME")

HELP_PANEL_NAME_1 = "Common Parameters"
HELP_PANEL_NAME_2 = "Logging Parameters"
Expand Down

0 comments on commit c45e3c8

Please sign in to comment.