Files
lerobot-clone/loop_datasets.py

7 lines
224 B
Python
Raw Normal View History

2025-11-03 19:23:24 +01:00
from huggingface_hub import HfApi, list_datasets
api = HfApi()
datasets = list_datasets(author="lerobot-data-collection")
for dataset in datasets:
if "test" in dataset.id:
print("'" + dataset.id + "',", end=" ")