Commit
·
f12977f
1
Parent(s):
f330e28
Update README.md
Browse filesadd license and citation
README.md
CHANGED
@@ -3,6 +3,7 @@ language:
|
|
3 |
- en
|
4 |
tags:
|
5 |
- llama
|
|
|
6 |
---
|
7 |
|
8 |
# OpenChat: Less is More for Open-source Models
|
@@ -127,4 +128,23 @@ MODEL_CONFIG_MAP = {
|
|
127 |
bos_token=None,
|
128 |
)
|
129 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
130 |
```
|
|
|
3 |
- en
|
4 |
tags:
|
5 |
- llama
|
6 |
+
license: apache-2.0
|
7 |
---
|
8 |
|
9 |
# OpenChat: Less is More for Open-source Models
|
|
|
128 |
bos_token=None,
|
129 |
)
|
130 |
}
|
131 |
+
```
|
132 |
+
|
133 |
+
|
134 |
+
## License
|
135 |
+
Our weight license is subject to their corresponding base model. For example, OpenChat and OpenChat-8192 are the same as the model [License](https://github.com/facebookresearch/llama/blob/main/MODEL_CARD.md) of LLaMA for non-commercial use only, while OpenCoderPlus is under the [License](https://huggingface.co/blog/starcoder) of StarCoder. Furthermore, we should follow [Privacy Practices](https://chrome.google.com/webstore/detail/sharegpt-share-your-chatg/daiacboceoaocpibfodeljbdfacokfjb) of ShareGPT. The code is released under Apache License 2.0.
|
136 |
+
|
137 |
+
|
138 |
+
## Citation
|
139 |
+
|
140 |
+
```
|
141 |
+
@software{openllms23,
|
142 |
+
title = {{OpenLLMs: Less is More for Open-source Models}},
|
143 |
+
author = {Wang, Guan and Cheng, Sijie and Yu, Qiying and Liu, Changling},
|
144 |
+
doi = {10.5281/zenodo.8105775},
|
145 |
+
url = {https://github.com/imoneoi/openchat},
|
146 |
+
version = {pre-release},
|
147 |
+
year = {2023},
|
148 |
+
month = {7},
|
149 |
+
}
|
150 |
```
|