Spaces:
Running
Running
openhands
commited on
Commit
·
737a3f2
1
Parent(s):
e734bf6
Add Acknowledgements section crediting AstaBench
Browse files- Added new Acknowledgements section to About page
- Credits AstaBench leaderboard (Allen Institute for AI) for UI design and methodology
- Lists key aspects adapted: macro-averaging, visualization, UI structure
- Positioned before Citation section
about.py
CHANGED
|
@@ -150,7 +150,33 @@ def build_page():
|
|
| 150 |
)
|
| 151 |
gr.Markdown("---", elem_classes="divider-line")
|
| 152 |
|
| 153 |
-
# --- Section 7:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 154 |
gr.HTML(
|
| 155 |
"""
|
| 156 |
<h2>Citation</h2>
|
|
|
|
| 150 |
)
|
| 151 |
gr.Markdown("---", elem_classes="divider-line")
|
| 152 |
|
| 153 |
+
# --- Section 7: Acknowledgements ---
|
| 154 |
+
gr.HTML(
|
| 155 |
+
"""
|
| 156 |
+
<h2>Acknowledgements</h2>
|
| 157 |
+
<p>
|
| 158 |
+
The OpenHands Index leaderboard interface and visualization components are adapted from the
|
| 159 |
+
<a href="https://huggingface.co/spaces/allenai/asta-bench-leaderboard" target="_blank" class="primary-link-button">AstaBench Leaderboard</a>
|
| 160 |
+
developed by the Allen Institute for AI. We thank the AstaBench team for their excellent work in creating
|
| 161 |
+
a clear and effective leaderboard design that we have customized for the software engineering domain.
|
| 162 |
+
</p>
|
| 163 |
+
<p>
|
| 164 |
+
Key aspects adapted from AstaBench include:
|
| 165 |
+
</p>
|
| 166 |
+
<ul class="info-list">
|
| 167 |
+
<li>Macro-averaging methodology for computing overall scores from category-level averages</li>
|
| 168 |
+
<li>Interactive data visualization and filtering components</li>
|
| 169 |
+
<li>Leaderboard UI structure and styling</li>
|
| 170 |
+
</ul>
|
| 171 |
+
<p>
|
| 172 |
+
We have extended and modified this foundation to support software engineering benchmarks and the
|
| 173 |
+
specific requirements of evaluating AI coding agents.
|
| 174 |
+
</p>
|
| 175 |
+
"""
|
| 176 |
+
)
|
| 177 |
+
gr.Markdown("---", elem_classes="divider-line")
|
| 178 |
+
|
| 179 |
+
# --- Section 8: Citation ---
|
| 180 |
gr.HTML(
|
| 181 |
"""
|
| 182 |
<h2>Citation</h2>
|