Spaces:
Runtime error
Runtime error
File size: 1,544 Bytes
b782462 619dd33 f9edc46 b782462 bc21111 b782462 b870da8 0854dfb b870da8 0854dfb b782462 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
from pathlib import Path
banner_url = "https://huggingface.co/spaces/WildEval/WildBench-Leaderboard/resolve/main/%E2%80%8Eleaderboard_logo_v2.png" # the same repo here.
BANNER = f'<div style="display: flex; justify-content: space-around;"><img src="{banner_url}" alt="Banner" style="width: 40vw; min-width: 300px; max-width: 600px;"> </div>'
INTRODUCTION_TEXT= """
# OSQ Benchmark (Evaluating LLMs with OSQs and MCQs)
π [Website](https://vila-lab.github.io/Open-LLM-Leaderboard-Website/) | π» [GitHub](https://github.com/VILA-Lab/Open-LLM-Leaderboard) | π [Paper](https://arxiv.org/pdf/2406.07545) | π¦ [X1](https://x.com/open_llm_lb) | π¦ [X2](https://x.com/szq0214)
> ### Open-LLM-Leaderboard,for evaluating large language models (LLMs) by transitioning from multiple-choice questions (MCQs) to open-style questions.
This approach addresses the inherent biases and limitations of MCQs, such as selection bias and the effect of random guessing. By utilizing open-style questions,
the framework aims to provide a more accurate assessment of LLMs' abilities across various benchmarks and ensure that the evaluation reflects true capabilities,
particularly in terms of language understanding and reasoning.
"""
CITATION_TEXT = """@article{myrzakhan2024openllmleaderboard,
title={Open-LLM-Leaderboard: From Multi-choice to Open-style Questions for LLMs Evaluation, Benchmark, and Arena},
author={Aidar Myrzakhan, Sondos Mahmoud Bsharat, Zhiqiang Shen},
journal={arXiv preprint arXiv:2406.07545},
year={2024},
}
""" |