Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -13,7 +13,7 @@ st.title("Metric Compare")
|
|
13 |
st.markdown("## Choose the dataset you want to use for the comparison:")
|
14 |
|
15 |
api = HfApi()
|
16 |
-
datasets = [d
|
17 |
|
18 |
dset = st.selectbox('Choose a dataset from the Hub', options=datasets)
|
19 |
|
|
|
13 |
st.markdown("## Choose the dataset you want to use for the comparison:")
|
14 |
|
15 |
api = HfApi()
|
16 |
+
datasets = [d.id for d in api.list_datasets(filter="task_categories:text-classification", sort = "downloads", direction=-1, limit = 20)]
|
17 |
|
18 |
dset = st.selectbox('Choose a dataset from the Hub', options=datasets)
|
19 |
|