batterySwapAIv1 / download_data.py
Jawaril99's picture
Added dataset download script and gitignore
446c98c
Raw
History Blame Contribute Delete
261 Bytes
from huggingface_hub import snapshot_download
dataset_dir = snapshot_download(
repo_id="batteryswapaichallenge/BatterySwapAI-2026-Public",
repo_type="dataset",
local_dir="./BatterySwapAI-2026-Public",
)
print("Dataset downloaded to:", dataset_dir)