Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Remove buttons.
Browse files
app.py
CHANGED
@@ -266,7 +266,14 @@ with blocks:
|
|
266 |
gr.HTML(WHAT_IS_F1_HTML_BOTTOM_A)
|
267 |
|
268 |
# Figure 1: bag_modifications.png (use gr.Image)
|
269 |
-
gr.Image(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
270 |
gr.HTML(
|
271 |
'<div class="f1-figcaption">An illustration of local modifications to bags: Introduce, Forget, and Join.</div>'
|
272 |
)
|
@@ -281,6 +288,8 @@ with blocks:
|
|
281 |
show_label=False,
|
282 |
interactive=False,
|
283 |
elem_classes=["f1-video"],
|
|
|
|
|
284 |
)
|
285 |
gr.HTML(
|
286 |
'<div class="f1-figcaption f1-figcaption-video">Animation showing the design of a compressed dynamic programming state-space.</div>'
|
@@ -290,14 +299,28 @@ with blocks:
|
|
290 |
|
291 |
# Evaluation: Warmup figure
|
292 |
gr.HTML(WHAT_IS_F1_HTML_EVAL_BEFORE_WARMUPFIG)
|
293 |
-
gr.Image(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
294 |
gr.HTML('<div class="f1-figcaption">Performance of frontier models on the FormulaOne-Warmup dataset.</div>')
|
295 |
|
296 |
# Between warmup and tier1 figs
|
297 |
gr.HTML(WHAT_IS_F1_HTML_AFTER_WARMUPFIG)
|
298 |
|
299 |
# Tier 1 figure with corrected caption text
|
300 |
-
gr.Image(
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
301 |
gr.HTML(
|
302 |
'<div class="f1-figcaption">Performance of frontier reasoning models on the Tier 1 of FormulaOne.</div>'
|
303 |
)
|
|
|
266 |
gr.HTML(WHAT_IS_F1_HTML_BOTTOM_A)
|
267 |
|
268 |
# Figure 1: bag_modifications.png (use gr.Image)
|
269 |
+
gr.Image(
|
270 |
+
"assets/bag_modifications.png",
|
271 |
+
show_label=False,
|
272 |
+
elem_classes=["f1-image"],
|
273 |
+
show_share_button=False,
|
274 |
+
show_download_button=False,
|
275 |
+
show_fullscreen_button=False,
|
276 |
+
)
|
277 |
gr.HTML(
|
278 |
'<div class="f1-figcaption">An illustration of local modifications to bags: Introduce, Forget, and Join.</div>'
|
279 |
)
|
|
|
288 |
show_label=False,
|
289 |
interactive=False,
|
290 |
elem_classes=["f1-video"],
|
291 |
+
show_share_button=False,
|
292 |
+
show_download_button=False,
|
293 |
)
|
294 |
gr.HTML(
|
295 |
'<div class="f1-figcaption f1-figcaption-video">Animation showing the design of a compressed dynamic programming state-space.</div>'
|
|
|
299 |
|
300 |
# Evaluation: Warmup figure
|
301 |
gr.HTML(WHAT_IS_F1_HTML_EVAL_BEFORE_WARMUPFIG)
|
302 |
+
gr.Image(
|
303 |
+
"assets/warmup_performance.png",
|
304 |
+
show_label=False,
|
305 |
+
elem_classes=["f1-image"],
|
306 |
+
show_share_button=False,
|
307 |
+
show_download_button=False,
|
308 |
+
show_fullscreen_button=False,
|
309 |
+
)
|
310 |
gr.HTML('<div class="f1-figcaption">Performance of frontier models on the FormulaOne-Warmup dataset.</div>')
|
311 |
|
312 |
# Between warmup and tier1 figs
|
313 |
gr.HTML(WHAT_IS_F1_HTML_AFTER_WARMUPFIG)
|
314 |
|
315 |
# Tier 1 figure with corrected caption text
|
316 |
+
gr.Image(
|
317 |
+
"assets/tier1_performance.png",
|
318 |
+
show_label=False,
|
319 |
+
elem_classes=["f1-image"],
|
320 |
+
show_share_button=False,
|
321 |
+
show_download_button=False,
|
322 |
+
show_fullscreen_button=False,
|
323 |
+
)
|
324 |
gr.HTML(
|
325 |
'<div class="f1-figcaption">Performance of frontier reasoning models on the Tier 1 of FormulaOne.</div>'
|
326 |
)
|