Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Centre align.
Browse files- app.py +3 -3
- src/about.py +1 -1
app.py
CHANGED
@@ -238,7 +238,7 @@ with blocks:
|
|
238 |
|
239 |
md_warmup = gr.Markdown(
|
240 |
value=(
|
241 |
-
|
242 |
"Given a tree-like graph $G=(V,E)$ and a weight function $w:V\\to\\mathbb{N}$, compute the sum of all weights of sets $S\\subseteq V$ such that the induced subgraph $G[S]$ is a disjoint union of paths and cycles."
|
243 |
),
|
244 |
latex_delimiters=_latex,
|
@@ -246,7 +246,7 @@ with blocks:
|
|
246 |
)
|
247 |
md_tier1 = gr.Markdown(
|
248 |
value=(
|
249 |
-
|
250 |
"Given a tree-like graph $G=(V,E)$ and a weight function $w:V\\to\\mathbb{N}$, compute the sum of all weights of sets $S\\subseteq V$ such that $G[S]$ is a disjoint union of paths and cycles and $S$ is maximal with respect to this property."
|
251 |
),
|
252 |
visible=False,
|
@@ -255,7 +255,7 @@ with blocks:
|
|
255 |
)
|
256 |
md_tier2 = gr.Markdown(
|
257 |
value=(
|
258 |
-
|
259 |
"Given a tree-like graph $G=(V,E)$ and a weight function $w:V\\to\\mathbb{N}$, compute the sum of all weights of sets $S\\subseteq V$ such that $G[S]$ is a disjoint union of cycles and $S$ is maximal with respect to this property."
|
260 |
),
|
261 |
visible=False,
|
|
|
238 |
|
239 |
md_warmup = gr.Markdown(
|
240 |
value=(
|
241 |
+
'<p style="text-align: center;"><code>Union-of-Paths-and-Cycles</code></p>\n'
|
242 |
"Given a tree-like graph $G=(V,E)$ and a weight function $w:V\\to\\mathbb{N}$, compute the sum of all weights of sets $S\\subseteq V$ such that the induced subgraph $G[S]$ is a disjoint union of paths and cycles."
|
243 |
),
|
244 |
latex_delimiters=_latex,
|
|
|
246 |
)
|
247 |
md_tier1 = gr.Markdown(
|
248 |
value=(
|
249 |
+
'<p style="text-align: center;"><code>Maximal-Union-of-Paths-and-Cycles</code></p>\n'
|
250 |
"Given a tree-like graph $G=(V,E)$ and a weight function $w:V\\to\\mathbb{N}$, compute the sum of all weights of sets $S\\subseteq V$ such that $G[S]$ is a disjoint union of paths and cycles and $S$ is maximal with respect to this property."
|
251 |
),
|
252 |
visible=False,
|
|
|
255 |
)
|
256 |
md_tier2 = gr.Markdown(
|
257 |
value=(
|
258 |
+
'<p style="text-align: center;"><code>Maximal-Union-of-Cycles</code></p>\n'
|
259 |
"Given a tree-like graph $G=(V,E)$ and a weight function $w:V\\to\\mathbb{N}$, compute the sum of all weights of sets $S\\subseteq V$ such that $G[S]$ is a disjoint union of cycles and $S$ is maximal with respect to this property."
|
260 |
),
|
261 |
visible=False,
|
src/about.py
CHANGED
@@ -50,7 +50,7 @@ WHAT_IS_F1_HTML_BOTTOM_A_BEFORE_TABS = """
|
|
50 |
<div class="f1-container">
|
51 |
<section>
|
52 |
<p class="mb-4 f1-p">The latter category is incredibly demanding, requiring resolution of many points of uncertainty, and involving an array of reasoning steps, including topological and geometric insight, knowledge of mathematical domains such as extremal graph theory and logic, combinatorial considerations, precise implementation, and more.</p>
|
53 |
-
<p class="f1-p">Despite <a href="https://epoch.ai/frontiermath" target="_blank" rel="noopener noreferrer" class="f1-a">impressive</a> <a href="https://artificialanalysis.ai/evaluations/gpqa-diamond" target="_blank" rel="noopener noreferrer" class="f1-a">performance</a> on existing benchmarks, presently <strong>no model solves even a single Tier 2 problem</strong
|
54 |
</section>
|
55 |
|
56 |
<section>
|
|
|
50 |
<div class="f1-container">
|
51 |
<section>
|
52 |
<p class="mb-4 f1-p">The latter category is incredibly demanding, requiring resolution of many points of uncertainty, and involving an array of reasoning steps, including topological and geometric insight, knowledge of mathematical domains such as extremal graph theory and logic, combinatorial considerations, precise implementation, and more.</p>
|
53 |
+
<p class="f1-p">Despite <a href="https://epoch.ai/frontiermath" target="_blank" rel="noopener noreferrer" class="f1-a">impressive</a> <a href="https://artificialanalysis.ai/evaluations/gpqa-diamond" target="_blank" rel="noopener noreferrer" class="f1-a">performance</a> on existing benchmarks, presently <strong>no model solves even a single Tier 2 problem</strong>.</p>
|
54 |
</section>
|
55 |
|
56 |
<section>
|