Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -278,6 +278,20 @@ def setup_sources():
|
|
| 278 |
- [HF Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard)
|
| 279 |
"""
|
| 280 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 281 |
|
| 282 |
def setup_Sponsorship():
|
| 283 |
st.markdown("## Sponsorship")
|
|
@@ -323,6 +337,7 @@ def main():
|
|
| 323 |
# setup_sources()
|
| 324 |
# setup_disclaimer()
|
| 325 |
# setup_footer()
|
|
|
|
| 326 |
setup_Sponsorship()
|
| 327 |
|
| 328 |
|
|
|
|
| 278 |
- [HF Open LLM Leaderboard](https://huggingface.co/spaces/HuggingFaceH4/open_llm_leaderboard)
|
| 279 |
"""
|
| 280 |
)
|
| 281 |
+
|
| 282 |
+
def setup_Contribution():
|
| 283 |
+
st.markdown("## How to Contribute")
|
| 284 |
+
|
| 285 |
+
markdown_content = """
|
| 286 |
+
- Model name (don't forget the links):
|
| 287 |
+
- Filling in missing entries
|
| 288 |
+
- Adding a new model as a new row to the leaderboard. Please keep the descending order.
|
| 289 |
+
- Adding a new benchmark as a new column in the leaderboard and adding the benchmark to the benchmarks table. Please keep the descending order.
|
| 290 |
+
- Code work:
|
| 291 |
+
- Improving the existing code
|
| 292 |
+
- Requesting and implementing new features
|
| 293 |
+
"""
|
| 294 |
+
st.markdown(markdown_content)
|
| 295 |
|
| 296 |
def setup_Sponsorship():
|
| 297 |
st.markdown("## Sponsorship")
|
|
|
|
| 337 |
# setup_sources()
|
| 338 |
# setup_disclaimer()
|
| 339 |
# setup_footer()
|
| 340 |
+
setup_Contribution()
|
| 341 |
setup_Sponsorship()
|
| 342 |
|
| 343 |
|