Tristan Thrush commited on
Commit
4dd611a
1 Parent(s): 09881d4

removed limit on model queries from development

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -75,7 +75,7 @@ def parse_metrics_rows(meta):
75
  @st.cache(ttl=86400)
76
  def get_data():
77
  data = []
78
- model_ids = get_model_ids()[:10]
79
  for model_id in tqdm(model_ids):
80
  meta = get_metadata(model_id)
81
  if meta is None:
75
  @st.cache(ttl=86400)
76
  def get_data():
77
  data = []
78
+ model_ids = get_model_ids()
79
  for model_id in tqdm(model_ids):
80
  meta = get_metadata(model_id)
81
  if meta is None: