Spaces:
Sleeping
Sleeping
Ludwig Stumpp
commited on
Commit
·
d9a0906
1
Parent(s):
8c37256
Add special thanks
Browse files- README.md +6 -0
- streamlit_app.py +9 -0
README.md
CHANGED
|
@@ -81,6 +81,12 @@ If you are interested in an overview about open llms for commercial use and fine
|
|
| 81 |
|
| 82 |
The results of this leaderboard are collected from the individual papers and published results of the model authors. For each reported value, the source is added as a link.
|
| 83 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 84 |
## Disclaimer
|
| 85 |
|
| 86 |
Above information may be wrong. If you want to use a published model for commercial use, please contact a lawyer.
|
|
|
|
| 81 |
|
| 82 |
The results of this leaderboard are collected from the individual papers and published results of the model authors. For each reported value, the source is added as a link.
|
| 83 |
|
| 84 |
+
Special thanks to the following pages:
|
| 85 |
+
- [MosaicML - Model benchmarks](https://www.mosaicml.com/blog/mpt-7b)
|
| 86 |
+
- [lmsys.org - Chatbot Arena benchmarks](https://lmsys.org/blog/2023-05-03-arena/)
|
| 87 |
+
- [Papers With Code](https://paperswithcode.com/)
|
| 88 |
+
- [Stanford HELM](https://crfm.stanford.edu/helm/latest/)
|
| 89 |
+
|
| 90 |
## Disclaimer
|
| 91 |
|
| 92 |
Above information may be wrong. If you want to use a published model for commercial use, please contact a lawyer.
|
streamlit_app.py
CHANGED
|
@@ -172,6 +172,15 @@ def setup_sources():
|
|
| 172 |
"authors. If you are interested in the sources of each individual reported model value, please visit the "
|
| 173 |
f"[llm-leaderboard]({GITHUB_URL}) repository."
|
| 174 |
)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 175 |
|
| 176 |
|
| 177 |
def setup_disclaimer():
|
|
|
|
| 172 |
"authors. If you are interested in the sources of each individual reported model value, please visit the "
|
| 173 |
f"[llm-leaderboard]({GITHUB_URL}) repository."
|
| 174 |
)
|
| 175 |
+
st.markdown(
|
| 176 |
+
"""
|
| 177 |
+
Special thanks to the following pages:
|
| 178 |
+
- [MosaicML - Model benchmarks](https://www.mosaicml.com/blog/mpt-7b)
|
| 179 |
+
- [lmsys.org - Chatbot Arena benchmarks](https://lmsys.org/blog/2023-05-03-arena/)
|
| 180 |
+
- [Papers With Code](https://paperswithcode.com/)
|
| 181 |
+
- [Stanford HELM](https://crfm.stanford.edu/helm/latest/)
|
| 182 |
+
"""
|
| 183 |
+
)
|
| 184 |
|
| 185 |
|
| 186 |
def setup_disclaimer():
|