mirror of
https://github.com/huggingface/lerobot.git
synced 2026-05-11 14:49:43 +00:00
11 lines
276 B
Python
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(']"',)
|