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 |
-
dsets = [d.id for d in api.list_datasets(filter="task_categories:text-classification", sort = "downloads", direction=-1, limit = 20) if d.id
|
17 |
|
18 |
dset = st.selectbox('Choose a dataset from the Hub', options=dsets)
|
19 |
|
|
|
13 |
st.markdown("### Choose the dataset you want to use for the comparison:")
|
14 |
|
15 |
api = HfApi()
|
16 |
+
dsets = [d.id for d in api.list_datasets(filter="task_categories:text-classification", sort = "downloads", direction=-1, limit = 20) if d.id !='glue']
|
17 |
|
18 |
dset = st.selectbox('Choose a dataset from the Hub', options=dsets)
|
19 |
|