mirror of
https://github.com/open-thought/reasoning-gym.git
synced 2026-04-23 16:55:05 +00:00
9 lines
274 B
Python
9 lines
274 B
Python
import os
|
|
|
|
from huggingface_hub import snapshot_download
|
|
|
|
if __name__ == "__main__":
|
|
CKPT_DIR = os.environ["CKPT_DIR"]
|
|
|
|
print("Downloading model ...")
|
|
snapshot_download(repo_id="Qwen/Qwen2.5-3B-Instruct", local_dir=f"{CKPT_DIR}/models/Qwen2.5-3B-Instruct/base")
|