Spaces:
Running
Running
Update src/about.py
Browse files- src/about.py +12 -11
src/about.py
CHANGED
|
@@ -20,22 +20,23 @@ NUM_FEWSHOT = 0 # Change with your few shot
|
|
| 20 |
|
| 21 |
|
| 22 |
|
| 23 |
-
#
|
| 24 |
-
TITLE = """<h1
|
| 25 |
|
| 26 |
-
#
|
| 27 |
INTRODUCTION_TEXT = """
|
| 28 |
-
|
| 29 |
-
machine learning engineering (MLE) workflows
|
|
|
|
|
|
|
| 30 |
"""
|
| 31 |
-
|
| 32 |
-
|
| 33 |
-
|
| 34 |
-
|
| 35 |
|
| 36 |
## Reproducibility
|
| 37 |
-
|
| 38 |
-
|
| 39 |
"""
|
| 40 |
|
| 41 |
EVALUATION_QUEUE_TEXT = """
|
|
|
|
| 20 |
|
| 21 |
|
| 22 |
|
| 23 |
+
# Add an ID to the h1 tag for easy CSS targeting
|
| 24 |
+
TITLE = """<h1 id="main-leaderboard-title" align="center">🏆 MLE-Dojo Benchmark Leaderboard</h1>"""
|
| 25 |
|
| 26 |
+
# Use standard Markdown or wrap in a div with a class
|
| 27 |
INTRODUCTION_TEXT = """
|
| 28 |
+
<div class="introduction-section">
|
| 29 |
+
<p>MLE-Dojo is a Gym-style framework for systematically training, evaluating, and improving autonomous large language model (LLM) agents in iterative machine learning engineering (MLE) workflows.</p>
|
| 30 |
+
<p>This leaderboard presents Elo rankings for various models across key MLE task categories.</p>
|
| 31 |
+
</div>
|
| 32 |
"""
|
| 33 |
+
# ... (rest of your about.py content) ...
|
| 34 |
+
LLM_BENCHMARKS_TEXT = """
|
| 35 |
+
## How Benchmarks Work
|
| 36 |
+
Detailed information about the benchmarks...
|
| 37 |
|
| 38 |
## Reproducibility
|
| 39 |
+
Commands to reproduce results...
|
|
|
|
| 40 |
"""
|
| 41 |
|
| 42 |
EVALUATION_QUEUE_TEXT = """
|