Spaces:
Running
Running
Update app
Browse files
app.py
CHANGED
|
@@ -38,8 +38,18 @@ rename_cols = {
|
|
| 38 |
"median_inference_time_s": "Median inference time (s)",
|
| 39 |
}
|
| 40 |
|
| 41 |
-
lb_mase =
|
| 42 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 43 |
|
| 44 |
|
| 45 |
with gr.Blocks() as demo:
|
|
|
|
| 38 |
"median_inference_time_s": "Median inference time (s)",
|
| 39 |
}
|
| 40 |
|
| 41 |
+
lb_mase = (
|
| 42 |
+
fev.leaderboard(summary_urls, metric_column="MASE")[selected_cols]
|
| 43 |
+
.rename(columns=rename_cols)
|
| 44 |
+
.round(3)
|
| 45 |
+
.reset_index()
|
| 46 |
+
)
|
| 47 |
+
lb_wql = (
|
| 48 |
+
fev.leaderboard(summary_urls, metric_column="WQL")[selected_cols]
|
| 49 |
+
.rename(columns=rename_cols)
|
| 50 |
+
.round(3)
|
| 51 |
+
.reset_index()
|
| 52 |
+
)
|
| 53 |
|
| 54 |
|
| 55 |
with gr.Blocks() as demo:
|