mirror of
https://github.com/huggingface/lerobot.git
synced 2026-05-18 10:10:08 +00:00
7 lines
224 B
Python
7 lines
224 B
Python
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=" ") |