sasha HF staff commited on
Commit
cb4cca6
1 Parent(s): ab87d79

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -31,7 +31,7 @@ dset_split = st.selectbox('Choose a dataset split for evaluation', options=split
31
  st.markdown("### Now select up to 5 models to compare their performance:")
32
 
33
  filt = ModelFilter(trained_dataset=dset)
34
- all_models = [m.modelId for m in api.list_models(filter=filt, sort = "downloads", direction=-1, limit = 20) if 't5' not in model.tags]
35
 
36
  models = st.multiselect(
37
  'Choose the models that have been trained/finetuned on this dataset',
 
31
  st.markdown("### Now select up to 5 models to compare their performance:")
32
 
33
  filt = ModelFilter(trained_dataset=dset)
34
+ all_models = [m.modelId for m in api.list_models(filter=filt, sort = "downloads", direction=-1, limit = 20) if 't5' not in m.tags]
35
 
36
  models = st.multiselect(
37
  'Choose the models that have been trained/finetuned on this dataset',