Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Merge branch 'main' of https://huggingface.co/spaces/double-ai/FormulaOne-Leaderboard
Browse files- app.py +2 -2
- src/about.py +2 -4
app.py
CHANGED
@@ -332,7 +332,7 @@ with blocks:
|
|
332 |
with gr.TabItem("FormulaOne", id=0, elem_id="landing-accuracy-tab"):
|
333 |
|
334 |
gr.HTML(
|
335 |
-
'<header class="text-center mb-12"><h1 class="text-4xl md:text-5xl font-bold text-gray-900 f1-h1">FormulaOne</h1></header>'
|
336 |
)
|
337 |
with gr.Row(elem_id="landing-hero-row"):
|
338 |
with gr.Column(scale=7, elem_id="landing-hero-left"):
|
@@ -364,7 +364,7 @@ with blocks:
|
|
364 |
# Pill-style selector aligned to the top-right
|
365 |
with gr.Row(elem_id="f1-tier-select-row"):
|
366 |
tier_selector = gr.Radio(
|
367 |
-
choices=list(TIER_TOTALS.keys()),
|
368 |
value="Deeper Tier",
|
369 |
label=None,
|
370 |
show_label=False,
|
|
|
332 |
with gr.TabItem("FormulaOne", id=0, elem_id="landing-accuracy-tab"):
|
333 |
|
334 |
gr.HTML(
|
335 |
+
'<div align="center"><header class="text-center mb-12"><h1 class="text-4xl md:text-5xl font-bold text-gray-900 f1-h1" style="margin:0; display:inline;">FormulaOne</h1><span style="display:inline-block; margin-left:0.5em;"><h3 style="margin:0; display:inline;" class="text-4xl md:text-5xl font-bold text-gray-900 f1-h3 style=">by <a href="https://doubleai.com/">AAI</a></h3></header></div>'
|
336 |
)
|
337 |
with gr.Row(elem_id="landing-hero-row"):
|
338 |
with gr.Column(scale=7, elem_id="landing-hero-left"):
|
|
|
364 |
# Pill-style selector aligned to the top-right
|
365 |
with gr.Row(elem_id="f1-tier-select-row"):
|
366 |
tier_selector = gr.Radio(
|
367 |
+
choices=list(reversed(list(TIER_TOTALS.keys()))),
|
368 |
value="Deeper Tier",
|
369 |
label=None,
|
370 |
show_label=False,
|
src/about.py
CHANGED
@@ -3,11 +3,9 @@ PAPER_URL = "https://arxiv.org/abs/2507.13337"
|
|
3 |
|
4 |
WHAT_IS_F1_HTML_TOP = f"""
|
5 |
<div class="f1-container">
|
6 |
-
<header class="text-center mb-12">
|
7 |
-
<h1 class="text-4xl md:text-5xl font-bold text-gray-900 f1-h1">FormulaOne</h1>
|
8 |
-
</header>
|
9 |
-
|
10 |
<section>
|
|
|
11 |
<p class="text-lg mb-4 f1-p">Frontier AI models have recently demonstrated strong performance on mathematical and algorithmic benchmarks, including earning <a href="https://deepmind.google/discover/blog/advanced-version-of-gemini-with-deep-think-officially-achieves-gold-medal-standard-at-the-international-mathematical-olympiad/" target="_blank" rel="noopener noreferrer" class="f1-a">gold medals in olympiads</a>, and attaining <a href="https://arxiv.org/html/2502.06807v1" target="_blank" rel="noopener noreferrer" class="f1-a">top percentile ratings</a> in competitive programming contests. How well do such benchmarks capture the true depth of algorithmic reasoning, as it arises in real-world research problems?</p>
|
12 |
|
13 |
<p class="text-lg mb-4 f1-p">We believe that existing benchmarks fail to capture the deep reasoning skills required for complex, research-level algorithmic problems. To address this gap, <a href="{PAPER_URL}" target="_blank" rel="noopener noreferrer" class="f1-a">we introduce <strong>FormulaOne</strong></a>.</p>
|
|
|
3 |
|
4 |
WHAT_IS_F1_HTML_TOP = f"""
|
5 |
<div class="f1-container">
|
6 |
+
<div align="center"><header class="text-center mb-12"><h1 class="text-4xl md:text-5xl font-bold text-gray-900 f1-h1" style="margin:0; display:inline;">FormulaOne</h1><span style="display:inline-block; margin-left:0.5em;"><h3 style="margin:0; display:inline;" class="text-4xl md:text-5xl font-bold text-gray-900 f1-h3 style=">by <a href="https://doubleai.com/">AAI</a></h3></header></div>
|
|
|
|
|
|
|
7 |
<section>
|
8 |
+
<br/>
|
9 |
<p class="text-lg mb-4 f1-p">Frontier AI models have recently demonstrated strong performance on mathematical and algorithmic benchmarks, including earning <a href="https://deepmind.google/discover/blog/advanced-version-of-gemini-with-deep-think-officially-achieves-gold-medal-standard-at-the-international-mathematical-olympiad/" target="_blank" rel="noopener noreferrer" class="f1-a">gold medals in olympiads</a>, and attaining <a href="https://arxiv.org/html/2502.06807v1" target="_blank" rel="noopener noreferrer" class="f1-a">top percentile ratings</a> in competitive programming contests. How well do such benchmarks capture the true depth of algorithmic reasoning, as it arises in real-world research problems?</p>
|
10 |
|
11 |
<p class="text-lg mb-4 f1-p">We believe that existing benchmarks fail to capture the deep reasoning skills required for complex, research-level algorithmic problems. To address this gap, <a href="{PAPER_URL}" target="_blank" rel="noopener noreferrer" class="f1-a">we introduce <strong>FormulaOne</strong></a>.</p>
|