shunxing1234
commited on
Commit
•
1df336d
1
Parent(s):
3713fdc
Update README_zh.md
Browse files- README_zh.md +5 -11
README_zh.md
CHANGED
@@ -13,17 +13,11 @@ license: other
|
|
13 |
</p>
|
14 |
</h4>
|
15 |
|
16 |
-
|
17 |
|
18 |
-
|
19 |
|
20 |
-
|
21 |
-
|
22 |
-
- 👮♀️ **Complies with domestic data regulations**. The Chinese corpora of the Aquila series models come from Intelligence Source's accumulated Chinese datasets over the years, including Chinese internet data from over 10,000 sources (more than 99% of which are domestic sources), as well as high-quality Chinese literature and book data supported by authoritative domestic organizations. We will continue to accumulate high-quality and diverse datasets and incorporate them into the subsequent training of the Aquila base models.
|
23 |
-
|
24 |
-
- 🎯 **Continuous improvements and open sourcing**. We will continue to improve training data, optimize training methods, and enhance model performance, cultivate a flourishing "model tree" on a better base model foundation, and continuously update open-source versions.
|
25 |
-
|
26 |
-
The additional details of the Aquila model will be presented in the official technical report. Please stay tuned for updates on official channels.
|
27 |
|
28 |
## Chat Model Performance
|
29 |
|
@@ -41,7 +35,7 @@ The additional details of the Aquila model will be presented in the official tec
|
|
41 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
42 |
import torch
|
43 |
device = torch.device("cuda")
|
44 |
-
model_info = "BAAI/
|
45 |
tokenizer = AutoTokenizer.from_pretrained(model_info, trust_remote_code=True)
|
46 |
model = AutoModelForCausalLM.from_pretrained(model_info, trust_remote_code=True)
|
47 |
model.eval()
|
@@ -59,4 +53,4 @@ with torch.no_grad():
|
|
59 |
|
60 |
## License
|
61 |
|
62 |
-
|
|
|
13 |
</p>
|
14 |
</h4>
|
15 |
|
16 |
+
# 悟道·天鹰(Aquila2)
|
17 |
|
18 |
+
我们开源了我们的 **Aquila2** 系列,现在包括基础语言模型 **Aquila2-7B** 和 **Aquila2-34B** ,对话模型 **AquilaChat2-7B** 和 **AquilaChat2-34B**,长文本对话模型**AquilaChat2-7B-16k** 和 **AquilaChat2-34B-16k**
|
19 |
|
20 |
+
悟道 · 天鹰 Aquila 模型的更多细节将在官方技术报告中呈现。请关注官方渠道更新。
|
|
|
|
|
|
|
|
|
|
|
|
|
21 |
|
22 |
## Chat Model Performance
|
23 |
|
|
|
35 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
36 |
import torch
|
37 |
device = torch.device("cuda")
|
38 |
+
model_info = "BAAI/AquilaChat2-7B"
|
39 |
tokenizer = AutoTokenizer.from_pretrained(model_info, trust_remote_code=True)
|
40 |
model = AutoModelForCausalLM.from_pretrained(model_info, trust_remote_code=True)
|
41 |
model.eval()
|
|
|
53 |
|
54 |
## License
|
55 |
|
56 |
+
AquilaChat2-7B open-source model is licensed under [ BAAI Aquila Model Licence Agreement](https://huggingface.co/BAAI/AquilaChat-7B/resolve/main/BAAI%20Aquila%20Model%20License%20Agreement.pdf)
|