mirror of
https://github.com/huggingface/lerobot.git
synced 2026-05-15 08:39:49 +00:00
8 lines
249 B
Python
8 lines
249 B
Python
from huggingface_hub import HfApi, list_datasets
|
|
|
|
api = HfApi()
|
|
datasets = list_datasets(author="lerobot-data-collection")
|
|
for dataset in datasets:
|
|
if "two-folds-dataset" in dataset.id:
|
|
print("'" + dataset.id + "',", end=" ")
|
|
print("\n") |