Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
AkimfromParis
commited on
Commit
•
fa2f7aa
1
Parent(s):
0d113e0
Update src/about.py
Browse files- src/about.py +12 -19
src/about.py
CHANGED
@@ -72,6 +72,18 @@ NUM_FEWSHOT = 0 # Change with your few shot
|
|
72 |
# Your leaderboard name
|
73 |
TITLE = """<h1 align="center" id="space-title">🇯🇵 Open Japanese LLM Leaderboard 🌸<br>「オープン大規模言語モデルのリーダーボード」</h1>"""
|
74 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
75 |
# What does your leaderboard evaluate?
|
76 |
INTRODUCTION_TEXT = """
|
77 |
The __Open Japanese LLM Leaderboard__ by __[LLM-Jp](https://llm-jp.nii.ac.jp/en/)__ evaluates the performance of Japanese Large Language Models (LLMs) with more than 16 tasks from classical to modern NLP tasks. The __Open Japanese LLM Leaderboard__ was built by open-source contributors of __[LLM-Jp](https://llm-jp.nii.ac.jp/en/)__, a cross-organizational project for the research and development of Japanese LLMs supported by the _National Institute of Informatics_ in Tokyo, Japan.
|
@@ -194,25 +206,6 @@ Make sure you have followed the above steps first.
|
|
194 |
If everything is done, check you can launch the EleutherAIHarness on your model locally, using the above command without modifications (you can add `--limit` to limit the number of examples per task).
|
195 |
"""
|
196 |
|
197 |
-
#BOTTOM_LOGO = """
|
198 |
-
#<div style="display: flex; flex-direction: row; justify-content">
|
199 |
-
# <a href="https://llm-jp.nii.ac.jp/en/">
|
200 |
-
# <img src="https://raw.githubusercontent.com/AkimfromParis/akimfromparis/refs/heads/main/images/LLM-jp-Logo-Oct-2024.png" alt="LLM-jp" style="max-height: 100px">
|
201 |
-
# </a>
|
202 |
-
# <a href="https://mdx.jp/">
|
203 |
-
# <img src="https://raw.githubusercontent.com/AkimfromParis/akimfromparis/refs/heads/main/images/MDX-Logo-Oct-2024.jpg" alt="MDX" style="max-height: 100px">
|
204 |
-
# </a>
|
205 |
-
# <a href="https://huggingface.co/">
|
206 |
-
# <img src="https://raw.githubusercontent.com/AkimfromParis/akimfromparis/refs/heads/main/images/HuggingFace-Logo-Oct-2024.png" alt="HuggingFace" style="max-height: 100px">
|
207 |
-
# </a>
|
208 |
-
#"""
|
209 |
-
|
210 |
-
LOGOS = [
|
211 |
-
"https://raw.githubusercontent.com/AkimfromParis/akimfromparis/refs/heads/main/images/LLM-jp-Logo-Oct-2024.png",
|
212 |
-
"https://raw.githubusercontent.com/AkimfromParis/akimfromparis/refs/heads/main/images/MDX-Logo-Oct-2024.jpg",
|
213 |
-
"https://raw.githubusercontent.com/AkimfromParis/akimfromparis/refs/heads/main/images/HuggingFace-Logo-Oct-2024.png",
|
214 |
-
]
|
215 |
-
|
216 |
CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
|
217 |
CITATION_BUTTON_TEXT = r"""@misc{OJLL,
|
218 |
author = {Miyao, Yusuke and Ishida, Shigeki and Okamoto, Takumi and Han, Namgi and Mousterou, Akim and Fourrier, Clémentine and Hayashi, Toshihiro and Tachibana, Yuichiro},
|
|
|
72 |
# Your leaderboard name
|
73 |
TITLE = """<h1 align="center" id="space-title">🇯🇵 Open Japanese LLM Leaderboard 🌸<br>「オープン大規模言語モデルのリーダーボード」</h1>"""
|
74 |
|
75 |
+
BOTTOM_LOGO = """
|
76 |
+
<div style="display: flex; flex-direction: row; justify-content">
|
77 |
+
<a href="https://llm-jp.nii.ac.jp/en/">
|
78 |
+
<img src="https://raw.githubusercontent.com/AkimfromParis/akimfromparis/refs/heads/main/images/LLM-jp-Logo-Oct-2024.png" alt="LLM-jp" style="max-height: 100px">
|
79 |
+
</a>
|
80 |
+
<a href="https://mdx.jp/">
|
81 |
+
<img src="https://raw.githubusercontent.com/AkimfromParis/akimfromparis/refs/heads/main/images/MDX-Logo-Oct-2024.jpg" alt="MDX" style="max-height: 100px">
|
82 |
+
</a>
|
83 |
+
<a href="https://huggingface.co/">
|
84 |
+
<img src="https://raw.githubusercontent.com/AkimfromParis/akimfromparis/refs/heads/main/images/HuggingFace-Logo-Oct-2024.png" alt="HuggingFace" style="max-height: 100px">
|
85 |
+
</a>
|
86 |
+
"""
|
87 |
# What does your leaderboard evaluate?
|
88 |
INTRODUCTION_TEXT = """
|
89 |
The __Open Japanese LLM Leaderboard__ by __[LLM-Jp](https://llm-jp.nii.ac.jp/en/)__ evaluates the performance of Japanese Large Language Models (LLMs) with more than 16 tasks from classical to modern NLP tasks. The __Open Japanese LLM Leaderboard__ was built by open-source contributors of __[LLM-Jp](https://llm-jp.nii.ac.jp/en/)__, a cross-organizational project for the research and development of Japanese LLMs supported by the _National Institute of Informatics_ in Tokyo, Japan.
|
|
|
206 |
If everything is done, check you can launch the EleutherAIHarness on your model locally, using the above command without modifications (you can add `--limit` to limit the number of examples per task).
|
207 |
"""
|
208 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
209 |
CITATION_BUTTON_LABEL = "Copy the following snippet to cite these results"
|
210 |
CITATION_BUTTON_TEXT = r"""@misc{OJLL,
|
211 |
author = {Miyao, Yusuke and Ishida, Shigeki and Okamoto, Takumi and Han, Namgi and Mousterou, Akim and Fourrier, Clémentine and Hayashi, Toshihiro and Tachibana, Yuichiro},
|