Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
Update src/about.py
Browse files- src/about.py +13 -12
src/about.py
CHANGED
@@ -77,18 +77,6 @@ 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.
|
78 |
|
79 |
On the __"LLM Benchmark"__ page, the question mark **"?"** refers to the parameters that are unknown in the model card on Hugging Face. For more information about datasets, please consult the __"About"__ page or refer to the website of __[LLM-Jp](https://llm-jp.nii.ac.jp/en/)__. And on the __"Submit here!"__ page, you can evaluate the performance of your model, and be part of the leaderboard.
|
80 |
-
|
81 |
-
#BOTTOM_LOGO not working after citation???
|
82 |
-
<div style="display: flex; flex-direction: row; justify-content">
|
83 |
-
<a href="https://llm-jp.nii.ac.jp/en/">
|
84 |
-
<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">
|
85 |
-
</a>
|
86 |
-
<a href="https://mdx.jp/">
|
87 |
-
<img src="https://raw.githubusercontent.com/AkimfromParis/akimfromparis/refs/heads/main/images/MDX-Logo-Oct-2024.jpg" alt="MDX" style="max-height: 100px">
|
88 |
-
</a>
|
89 |
-
<a href="https://huggingface.co/">
|
90 |
-
<img src="https://raw.githubusercontent.com/AkimfromParis/akimfromparis/refs/heads/main/images/HuggingFace-Logo-Oct-2024.png" alt="HuggingFace" style="max-height: 100px">
|
91 |
-
</a>
|
92 |
"""
|
93 |
|
94 |
# Which evaluations are you running? how can people reproduce what you have?
|
@@ -223,4 +211,17 @@ CITATION_BUTTON_TEXT = r"""@misc{OJLL,
|
|
223 |
primaryClass={cs.CL},
|
224 |
url={https://arxiv.org/abs/2407.03963},
|
225 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
226 |
"""
|
|
|
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.
|
78 |
|
79 |
On the __"LLM Benchmark"__ page, the question mark **"?"** refers to the parameters that are unknown in the model card on Hugging Face. For more information about datasets, please consult the __"About"__ page or refer to the website of __[LLM-Jp](https://llm-jp.nii.ac.jp/en/)__. And on the __"Submit here!"__ page, you can evaluate the performance of your model, and be part of the leaderboard.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
80 |
"""
|
81 |
|
82 |
# Which evaluations are you running? how can people reproduce what you have?
|
|
|
211 |
primaryClass={cs.CL},
|
212 |
url={https://arxiv.org/abs/2407.03963},
|
213 |
}
|
214 |
+
"""
|
215 |
+
|
216 |
+
BOTTOM_LOGO = """
|
217 |
+
<div style="display: flex; flex-direction: row; justify-content">
|
218 |
+
<a href="https://llm-jp.nii.ac.jp/en/">
|
219 |
+
<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">
|
220 |
+
</a>
|
221 |
+
<a href="https://mdx.jp/">
|
222 |
+
<img src="https://raw.githubusercontent.com/AkimfromParis/akimfromparis/refs/heads/main/images/MDX-Logo-Oct-2024.jpg" alt="MDX" style="max-height: 100px">
|
223 |
+
</a>
|
224 |
+
<a href="https://huggingface.co/">
|
225 |
+
<img src="https://raw.githubusercontent.com/AkimfromParis/akimfromparis/refs/heads/main/images/HuggingFace-Logo-Oct-2024.png" alt="HuggingFace" style="max-height: 100px">
|
226 |
+
</a>
|
227 |
"""
|