zhimin-z
commited on
Commit
·
df9900d
1
Parent(s):
ca087aa
fix
Browse files
app.py
CHANGED
|
@@ -788,10 +788,18 @@ with gr.Blocks(title="SWE Assistant Issue & Discussion Leaderboard", theme=gr.th
|
|
| 788 |
|
| 789 |
# Monthly Metrics Section
|
| 790 |
gr.Markdown("---") # Divider
|
| 791 |
-
|
| 792 |
-
|
| 793 |
-
|
| 794 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 795 |
|
| 796 |
# Load monthly metrics when app starts
|
| 797 |
app.load(
|
|
@@ -800,13 +808,6 @@ with gr.Blocks(title="SWE Assistant Issue & Discussion Leaderboard", theme=gr.th
|
|
| 800 |
outputs=[monthly_metrics_plot]
|
| 801 |
)
|
| 802 |
|
| 803 |
-
# Discussion Monthly Metrics Section
|
| 804 |
-
gr.Markdown("---") # Divider
|
| 805 |
-
with gr.Group():
|
| 806 |
-
gr.Markdown("### Discussion Monthly Performance - Top 5 Assistants")
|
| 807 |
-
gr.Markdown("*Shows discussion resolution trends and volumes for the most active assistants*")
|
| 808 |
-
discussion_metrics_plot = gr.Plot(label="Discussion Monthly Metrics")
|
| 809 |
-
|
| 810 |
# Load discussion monthly metrics when app starts
|
| 811 |
app.load(
|
| 812 |
fn=lambda: create_monthly_metrics_plot(type="discussion"),
|
|
|
|
| 788 |
|
| 789 |
# Monthly Metrics Section
|
| 790 |
gr.Markdown("---") # Divider
|
| 791 |
+
gr.Markdown("## Monthly Performance Metrics - Top 5 Assistants")
|
| 792 |
+
|
| 793 |
+
with gr.Row():
|
| 794 |
+
with gr.Column():
|
| 795 |
+
gr.Markdown("*Issue volume and resolved rate trends*")
|
| 796 |
+
monthly_metrics_plot = gr.Plot(label="Issue Monthly Metrics")
|
| 797 |
+
|
| 798 |
+
# Discussion Monthly Metrics Section
|
| 799 |
+
gr.Markdown("---") # Divider
|
| 800 |
+
with gr.Column():
|
| 801 |
+
gr.Markdown("*Discussion volume and resolved rate trends*")
|
| 802 |
+
discussion_metrics_plot = gr.Plot(label="Discussion Monthly Metrics")
|
| 803 |
|
| 804 |
# Load monthly metrics when app starts
|
| 805 |
app.load(
|
|
|
|
| 808 |
outputs=[monthly_metrics_plot]
|
| 809 |
)
|
| 810 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 811 |
# Load discussion monthly metrics when app starts
|
| 812 |
app.load(
|
| 813 |
fn=lambda: create_monthly_metrics_plot(type="discussion"),
|