Spaces:
Sleeping
Sleeping
Yotam-Perlitz
commited on
Commit
•
ae274a0
1
Parent(s):
b5e722a
only allow benchmarks with a large enough overlap in corr plot
Browse files
app.py
CHANGED
@@ -734,7 +734,8 @@ st.subheader("Benchmark Report Card")
|
|
734 |
|
735 |
st.markdown("Choose the Benchmark from which you want to get a report.")
|
736 |
|
737 |
-
benchmarks =
|
|
|
738 |
index_to_use = 1
|
739 |
if not my_benchmark.is_empty:
|
740 |
index_to_use = benchmarks.index(my_benchmark.df["scenario"].unique()[0])
|
|
|
734 |
|
735 |
st.markdown("Choose the Benchmark from which you want to get a report.")
|
736 |
|
737 |
+
benchmarks = data["Benchmark"].unique().tolist()
|
738 |
+
|
739 |
index_to_use = 1
|
740 |
if not my_benchmark.is_empty:
|
741 |
index_to_use = benchmarks.index(my_benchmark.df["scenario"].unique()[0])
|