This commit is contained in:
croissant
2025-11-17 10:46:22 +01:00
committed by Michel Aractingi
parent 40e98ba690
commit 9b04fd25b6
4 changed files with 34 additions and 17 deletions
+5 -3
View File
@@ -2,7 +2,9 @@ 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 "two-folds-dataset" in dataset.id:
print("'" + dataset.id + "',", end=" ")
print("\n")
if "three-folds-dataset" in dataset.id:
print("'" + dataset.id + "',", end="")
print(']"',)