Spaces:
Running
Running
Fix font size
Browse files- app.py +1 -1
- src/custom_html_js.py +4 -4
app.py
CHANGED
|
@@ -60,7 +60,7 @@ for metric in ["WQL", "MASE"]:
|
|
| 60 |
lb = lb.astype("float64").round(3).reset_index()
|
| 61 |
lb["Training corpus overlap (%)"] = (lb["Training corpus overlap (%)"] * 100).round(1)
|
| 62 |
lb["model_name"] = lb["model_name"].apply(make_clickable_model)
|
| 63 |
-
leaderboards[metric] = highlight_zeroshot(lb.style)
|
| 64 |
|
| 65 |
|
| 66 |
with gr.Blocks(css=custom_css) as demo:
|
|
|
|
| 60 |
lb = lb.astype("float64").round(3).reset_index()
|
| 61 |
lb["Training corpus overlap (%)"] = (lb["Training corpus overlap (%)"] * 100).round(1)
|
| 62 |
lb["model_name"] = lb["model_name"].apply(make_clickable_model)
|
| 63 |
+
leaderboards[metric] = highlight_zeroshot(lb.style)
|
| 64 |
|
| 65 |
|
| 66 |
with gr.Blocks(css=custom_css) as demo:
|
src/custom_html_js.py
CHANGED
|
@@ -4,13 +4,13 @@ custom_css = """
|
|
| 4 |
font-size: 20px !important;
|
| 5 |
}
|
| 6 |
|
| 7 |
-
.tab-buttons button {
|
| 8 |
-
font-size: 20px;
|
| 9 |
-
}
|
| 10 |
-
|
| 11 |
"""
|
| 12 |
|
| 13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
# #citation-button span {
|
| 15 |
# font-size: 16px !important;
|
| 16 |
# }
|
|
|
|
| 4 |
font-size: 20px !important;
|
| 5 |
}
|
| 6 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7 |
"""
|
| 8 |
|
| 9 |
|
| 10 |
+
# .tab-buttons button {
|
| 11 |
+
# font-size: 20px;
|
| 12 |
+
# }
|
| 13 |
+
|
| 14 |
# #citation-button span {
|
| 15 |
# font-size: 16px !important;
|
| 16 |
# }
|