Spaces:
Sleeping
Sleeping
Upload app.py
Browse files
app.py
CHANGED
@@ -11,7 +11,7 @@ notebook_url = "https://colab.research.google.com/drive/17L9uCiAivzWfzOxo2Tb9RMa
|
|
11 |
def make_leaderboard_md(elo_results):
|
12 |
leaderboard_md = f"""
|
13 |
# Leaderboard
|
14 |
-
[[Blog](https://lmsys.org/blog/2023-05-03-arena/)
|
15 |
|
16 |
We use the Elo rating system to calculate the relative performance of the models. You can view the voting data, basic analyses, and calculation procedure in this [notebook]({notebook_url}). We will periodically release new leaderboards. If you want to see more models, please help us [add them](https://github.com/lm-sys/FastChat/blob/main/docs/arena.md#how-to-add-a-new-model).
|
17 |
Last updated: {elo_results["last_updated_datetime"]}
|
@@ -82,5 +82,5 @@ if __name__ == "__main__":
|
|
82 |
parser.add_argument("--share", action="store_true")
|
83 |
args = parser.parse_args()
|
84 |
|
85 |
-
demo = build_demo("
|
86 |
demo.launch(share=args.share)
|
|
|
11 |
def make_leaderboard_md(elo_results):
|
12 |
leaderboard_md = f"""
|
13 |
# Leaderboard
|
14 |
+
| [Vote](https://arena.lmsys.org/) | [Blog](https://lmsys.org/blog/2023-05-03-arena/) | [GitHub](https://github.com/lm-sys/FastChat) | [Paper](https://arxiv.org/abs/2306.05685) | [Twitter](https://twitter.com/lmsysorg) | [Discord](https://discord.gg/HSWAKCrnFx) |
|
15 |
|
16 |
We use the Elo rating system to calculate the relative performance of the models. You can view the voting data, basic analyses, and calculation procedure in this [notebook]({notebook_url}). We will periodically release new leaderboards. If you want to see more models, please help us [add them](https://github.com/lm-sys/FastChat/blob/main/docs/arena.md#how-to-add-a-new-model).
|
17 |
Last updated: {elo_results["last_updated_datetime"]}
|
|
|
82 |
parser.add_argument("--share", action="store_true")
|
83 |
args = parser.parse_args()
|
84 |
|
85 |
+
demo = build_demo("elo_results_20230619.pkl")
|
86 |
demo.launch(share=args.share)
|