Files
lerobot/loop_datasets.py
T
croissant 9b04fd25b6 cam res
2025-12-17 16:46:41 +01:00

11 lines
276 B
Python

from huggingface_hub import HfApi, list_datasets
api = HfApi()
datasets = list_datasets(author="lerobot-data-collection")
print('"[', end="")
i=0
for dataset in datasets:
if "three-folds-dataset" in dataset.id:
print("'" + dataset.id + "',", end="")
print(']"',)