Spaces:
Runtime error
Runtime error
Fix quality
Browse files
app.py
CHANGED
@@ -120,7 +120,9 @@ selected_dataset = st.selectbox(
|
|
120 |
"Select a dataset",
|
121 |
all_datasets,
|
122 |
index=all_datasets.index(default_dataset),
|
123 |
-
help="Datasets with metadata can be evaluated with 1-click. Check out the
|
|
|
|
|
124 |
)
|
125 |
st.experimental_set_query_params(**{"dataset": [selected_dataset]})
|
126 |
|
@@ -347,7 +349,8 @@ with st.form(key="form"):
|
|
347 |
selected_models = st.multiselect(
|
348 |
"Select the models you wish to evaluate",
|
349 |
compatible_models,
|
350 |
-
help="Don't see your model in this list? Add the dataset and task it was trained to the
|
|
|
351 |
)
|
352 |
print("Selected models:", selected_models)
|
353 |
|
|
|
120 |
"Select a dataset",
|
121 |
all_datasets,
|
122 |
index=all_datasets.index(default_dataset),
|
123 |
+
help="""Datasets with metadata can be evaluated with 1-click. Check out the \
|
124 |
+
[documentation](https://huggingface.co/docs/hub/datasets-cards) to add \
|
125 |
+
evaluation metadata to a dataset.""",
|
126 |
)
|
127 |
st.experimental_set_query_params(**{"dataset": [selected_dataset]})
|
128 |
|
|
|
349 |
selected_models = st.multiselect(
|
350 |
"Select the models you wish to evaluate",
|
351 |
compatible_models,
|
352 |
+
help="""Don't see your model in this list? Add the dataset and task it was trained to the \
|
353 |
+
[model card metadata.](https://huggingface.co/docs/hub/models-cards#model-card-metadata)""",
|
354 |
)
|
355 |
print("Selected models:", selected_models)
|
356 |
|