Update
Browse files
app.py
CHANGED
|
@@ -66,7 +66,7 @@ else:
|
|
| 66 |
"dynamic_point": st.column_config.LineChartColumn("Dynamic Point", y_min=0, y_max=5000),
|
| 67 |
"problem_link": st.column_config.LinkColumn("Link", display_text="Open"),
|
| 68 |
},
|
| 69 |
-
height=
|
| 70 |
column_order=("problem_id", "dynamic_point", "problem_link"),
|
| 71 |
hide_index=True,
|
| 72 |
)
|
|
@@ -105,7 +105,7 @@ else:
|
|
| 105 |
"pass@1": [0 for model_name in model_list],
|
| 106 |
"beyond@t": [0 for model_name in model_list],
|
| 107 |
"beyond@m": [0 for model_name in model_list],
|
| 108 |
-
"model_progress": [random.randint(0, problem_count+1) for model_name in model_list],
|
| 109 |
}
|
| 110 |
)
|
| 111 |
|
|
@@ -120,5 +120,5 @@ else:
|
|
| 120 |
"model_progress": st.column_config.ProgressColumn("Progress", min_value=0, max_value=problem_count, format="plain"),
|
| 121 |
},
|
| 122 |
column_order=("model_name", "pass@1", "beyond@t", "beyond@m", "model_progress"),
|
| 123 |
-
|
| 124 |
)
|
|
|
|
| 66 |
"dynamic_point": st.column_config.LineChartColumn("Dynamic Point", y_min=0, y_max=5000),
|
| 67 |
"problem_link": st.column_config.LinkColumn("Link", display_text="Open"),
|
| 68 |
},
|
| 69 |
+
height=800,
|
| 70 |
column_order=("problem_id", "dynamic_point", "problem_link"),
|
| 71 |
hide_index=True,
|
| 72 |
)
|
|
|
|
| 105 |
"pass@1": [0 for model_name in model_list],
|
| 106 |
"beyond@t": [0 for model_name in model_list],
|
| 107 |
"beyond@m": [0 for model_name in model_list],
|
| 108 |
+
"model_progress": [int(random.randint(0, problem_count+1)) for model_name in model_list],
|
| 109 |
}
|
| 110 |
)
|
| 111 |
|
|
|
|
| 120 |
"model_progress": st.column_config.ProgressColumn("Progress", min_value=0, max_value=problem_count, format="plain"),
|
| 121 |
},
|
| 122 |
column_order=("model_name", "pass@1", "beyond@t", "beyond@m", "model_progress"),
|
| 123 |
+
height=800,
|
| 124 |
)
|