loodvanniekerkginkgo commited on
Commit
a99fd50
·
1 Parent(s): d2b4a3a

Added search column back because it breaks when missing

Browse files
Files changed (2) hide show
  1. Dockerfile +0 -1
  2. app.py +1 -0
Dockerfile CHANGED
@@ -31,4 +31,3 @@ CMD ["python", "app.py"]
31
  # Running with gradio enables hot reloading (https://www.gradio.app/guides/developing-faster-with-reload-mode)
32
  # CMD ["gradio", "app.py"]
33
  # Or just run the container without the entrypoint and rerun the python app.py command when you want to reload
34
-
 
31
  # Running with gradio enables hot reloading (https://www.gradio.app/guides/developing-faster-with-reload-mode)
32
  # CMD ["gradio", "app.py"]
33
  # Or just run the container without the entrypoint and rerun the python app.py command when you want to reload
 
app.py CHANGED
@@ -53,6 +53,7 @@ def get_leaderboard_object(assay: str | None = None):
53
  value=df,
54
  datatype=["str", "str", "str", "number"],
55
  select_columns=["model", "assay", "feature", "spearman"],
 
56
  # hide_columns=["spearman_abs"],
57
  filter_columns=filter_columns,
58
  every=60,
 
53
  value=df,
54
  datatype=["str", "str", "str", "number"],
55
  select_columns=["model", "assay", "feature", "spearman"],
56
+ search_columns=["model"],
57
  # hide_columns=["spearman_abs"],
58
  filter_columns=filter_columns,
59
  every=60,