lewtun HF staff commited on
Commit
73f2f7a
1 Parent(s): 31b9ddb

Fix quality

Browse files
Files changed (1) hide show
  1. app.py +5 -2
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 [documentation](https://huggingface.co/docs/hub/datasets-cards) to add evaluation metadata to a dataset.",
 
 
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 [model card metadata.](https://huggingface.co/docs/hub/models-cards#model-card-metadata)",
 
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