Added an extra newline when appending results
Browse files- functions.py +2 -1
functions.py
CHANGED
@@ -213,7 +213,8 @@ def get_eval_results(repo: str, results: dict):
|
|
213 |
[v["dataset_name"], v["metric_value"]] for v in task_summary.values()
|
214 |
]
|
215 |
|
216 |
-
text = f"""
|
|
|
217 |
Detailed results can be found [here]({get_details_url(repo)})!
|
218 |
Summarized results can be found [here]({get_contents_url(repo)})!
|
219 |
|
|
|
213 |
[v["dataset_name"], v["metric_value"]] for v in task_summary.values()
|
214 |
]
|
215 |
|
216 |
+
text = f"""
|
217 |
+
# [Open LLM Leaderboard Evaluation Results](https://huggingface.co/spaces/open-llm-leaderboard/open_llm_leaderboard)
|
218 |
Detailed results can be found [here]({get_details_url(repo)})!
|
219 |
Summarized results can be found [here]({get_contents_url(repo)})!
|
220 |
|