Spaces:
Running
Running
simonduerr
commited on
Commit
•
1bbfb6f
1
Parent(s):
35c406b
Update app.py
Browse files
app.py
CHANGED
@@ -60,11 +60,16 @@ def submit(model_name, model_id, challenge, submission_id, paper_link, architect
|
|
60 |
abs_path = Path(__file__).parent
|
61 |
|
62 |
# Any pandas-compatible data
|
63 |
-
|
|
|
64 |
|
65 |
with gr.Blocks() as demo:
|
66 |
gr.Markdown("""
|
67 |
# MLSB 2024 Challenges
|
|
|
|
|
|
|
|
|
68 |
""")
|
69 |
|
70 |
|
@@ -73,7 +78,7 @@ with gr.Blocks() as demo:
|
|
73 |
Evaluating Protein-Protein interaction prediction
|
74 |
""")
|
75 |
Leaderboard(
|
76 |
-
value=
|
77 |
select_columns=["Arch", "Model", "L_rms", "I_rms",
|
78 |
"F_nat", "DOCKQ", "CAPRI"],
|
79 |
search_columns=["model_name_for_query"],
|
@@ -85,9 +90,9 @@ with gr.Blocks() as demo:
|
|
85 |
Evaluating Protein-Ligand prediction
|
86 |
""")
|
87 |
Leaderboard(
|
88 |
-
value=
|
89 |
-
select_columns=["Arch", "Model", "
|
90 |
-
"
|
91 |
search_columns=["model_name_for_query"],
|
92 |
hide_columns=["model_name_for_query",],
|
93 |
filter_columns=["Arch"],
|
|
|
60 |
abs_path = Path(__file__).parent
|
61 |
|
62 |
# Any pandas-compatible data
|
63 |
+
pinder_df = pd.read_json(str(abs_path / "leaderboard_pinder.json"))
|
64 |
+
plinder_df = pd.read_json(str(abs_path / "leaderboard_plinder.json"))
|
65 |
|
66 |
with gr.Blocks() as demo:
|
67 |
gr.Markdown("""
|
68 |
# MLSB 2024 Challenges
|
69 |
+
|
70 |
+
Please find more details about the challenge on [mlsb.io/#challenge](https://www.mlsb.io/#challenge).
|
71 |
+
|
72 |
+
This competition is run together with VantAI, NVidia, Huggingface & University of Basel.
|
73 |
""")
|
74 |
|
75 |
|
|
|
78 |
Evaluating Protein-Protein interaction prediction
|
79 |
""")
|
80 |
Leaderboard(
|
81 |
+
value=pinder_df,
|
82 |
select_columns=["Arch", "Model", "L_rms", "I_rms",
|
83 |
"F_nat", "DOCKQ", "CAPRI"],
|
84 |
search_columns=["model_name_for_query"],
|
|
|
90 |
Evaluating Protein-Ligand prediction
|
91 |
""")
|
92 |
Leaderboard(
|
93 |
+
value=plinder_df,
|
94 |
+
select_columns=["Arch", "Model", "Mean lDDT-PLI", "Median RMSD",
|
95 |
+
"Success Rate (% lDDT-PLI >= 0.7)"],
|
96 |
search_columns=["model_name_for_query"],
|
97 |
hide_columns=["model_name_for_query",],
|
98 |
filter_columns=["Arch"],
|