Spaces:
Running
Running
Update src/about.py
Browse files- src/about.py +19 -19
src/about.py
CHANGED
@@ -24,30 +24,30 @@ NUM_FEWSHOT = 0 # Change with your few shot
|
|
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 id="intro" 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 |
-
# </div>
|
31 |
-
# """
|
32 |
INTRODUCTION_TEXT = """
|
33 |
<div id="intro" class="introduction-section">
|
34 |
<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>
|
35 |
</div>
|
36 |
-
|
37 |
-
<p align="center" style="font-family:'Segoe UI', Roboto, sans-serif; font-weight:bold; text-transform:uppercase;">
|
38 |
-
<a href="https://arxiv.org/abs/1706.03762">
|
39 |
-
<img src="https://img.shields.io/badge/Arxiv-1706.03762-000000.svg?style=flat-square&logo=arxiv&logoColor=%23FFD700&labelColor=000000" height="28">
|
40 |
-
</a>
|
41 |
-
|
42 |
-
<a href="https://mle-dojo.github.io/MLE-Dojo-page/">
|
43 |
-
<img src="https://img.shields.io/badge/Project%20Website-%20-000000.svg?style=flat-square&logo=Google-Chrome&logoColor=%23FFD700&labelColor=000000" height="28">
|
44 |
-
</a>
|
45 |
-
|
46 |
-
<a href="https://github.com/MLE-Dojo/MLE-Dojo">
|
47 |
-
<img src="https://img.shields.io/badge/Code-000000.svg?style=flat-square&logo=github&logoColor=%23FFD700&labelColor=000000" height="28">
|
48 |
-
</a>
|
49 |
-
</p>
|
50 |
"""
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
51 |
|
52 |
# ... (rest of your about.py content) ...
|
53 |
LLM_BENCHMARKS_TEXT = """
|
|
|
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 id="intro" 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 |
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
"""
|
32 |
+
# INTRODUCTION_TEXT = """
|
33 |
+
# <div id="intro" class="introduction-section">
|
34 |
+
# <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>
|
35 |
+
# </div>
|
36 |
+
|
37 |
+
# <p align="center" style="font-family:'Segoe UI', Roboto, sans-serif; font-weight:bold; text-transform:uppercase;">
|
38 |
+
# <a href="https://arxiv.org/abs/1706.03762">
|
39 |
+
# <img src="https://img.shields.io/badge/Arxiv-1706.03762-000000.svg?style=flat-square&logo=arxiv&logoColor=%23FFD700&labelColor=000000" height="28">
|
40 |
+
# </a>
|
41 |
+
#
|
42 |
+
# <a href="https://mle-dojo.github.io/MLE-Dojo-page/">
|
43 |
+
# <img src="https://img.shields.io/badge/Project%20Website-%20-000000.svg?style=flat-square&logo=Google-Chrome&logoColor=%23FFD700&labelColor=000000" height="28">
|
44 |
+
# </a>
|
45 |
+
#
|
46 |
+
# <a href="https://github.com/MLE-Dojo/MLE-Dojo">
|
47 |
+
# <img src="https://img.shields.io/badge/Code-000000.svg?style=flat-square&logo=github&logoColor=%23FFD700&labelColor=000000" height="28">
|
48 |
+
# </a>
|
49 |
+
# </p>
|
50 |
+
# """
|
51 |
|
52 |
# ... (rest of your about.py content) ...
|
53 |
LLM_BENCHMARKS_TEXT = """
|