Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
MSParkDev
/
Database
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
park minseo
commited on
Jan 2, 2023
Commit
186d01f
·
1 Parent(s):
cb0aff1
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
from datasets import list-datasets
2
+
3
+
all_datasets = list_datasets()
4
+
print(f"현재 허브에는 {len(datasets)개의 데이터셋이 있습니다.")
5
+
print(f"처음 10개 데이터셋: {all_datasets[:10]}")