wenge-research
commited on
Commit
•
572c73e
1
Parent(s):
cc751aa
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,84 @@
|
|
1 |
---
|
2 |
-
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
+
language:
|
3 |
+
- zh
|
4 |
+
- en
|
5 |
+
pipeline_tag: text-generation
|
6 |
+
tags:
|
7 |
+
- yayi
|
8 |
---
|
9 |
+
# 雅意大模型
|
10 |
+
|
11 |
+
## 介绍
|
12 |
+
雅意大模型在百万级人工构造的高质量领域数据上进行指令微调得到,训练数据覆盖媒体宣传、舆情分析、公共安全、金融风控、城市治理等五大领域,上百种自然语言指令任务。雅意大模型从预训练初始化权重到领域模型的迭代过程中,我们逐步增强了它的中文基础能力和领域分析能力,并增加了部分插件能力。同时,经过数百名用户内测过程中持续不断的人工反馈优化,我们进一步提升了模型性能和安全性。
|
13 |
+
|
14 |
+
通过雅意大模型的开源为促进中文预训练大模型开源社区的发展,贡献自己的一份力量,通过开源,与每一位合作伙伴共建雅意大模型生态。
|
15 |
+
|
16 |
+
## 快速开始
|
17 |
+
|
18 |
+
以下是一个简单调用 `yayi-7b` 进行下游任务推理的示例代码,可在单张 A100/A800/3090 等GPU运行,使用FP16精度推理时约占用 20GB 显存。若需获取训练数据或基于 `yayi-7b` 进行模型微调,请参考我们的 [💻Github Repo](https://github.com/wenge-research/YaYi)。
|
19 |
+
|
20 |
+
```python
|
21 |
+
from transformers import AutoTokenizer, AutoModelForCausalLM
|
22 |
+
|
23 |
+
yayi_7b_path = "wenge-research/yayi-7b"
|
24 |
+
tokenizer = AutoTokenizer.from_pretrained(yayi_7b_path)
|
25 |
+
model = AutoModelForCausalLM.from_pretrained(yayi_7b_path, device_map="auto", torch_dtype=torch.bfloat16)
|
26 |
+
|
27 |
+
prompt = "你好"
|
28 |
+
formatted_prompt = f"<|System|>:\nA chat between a human and an AI assistant named YaYi.\nYaYi is a helpful and harmless language model developed by Beijing Wenge Technology Co.,Ltd.\n\n<|Human|>:\n{prompt}\n\n<|YaYi|>:"
|
29 |
+
inputs = tokenizer.encode(prompt, return_tensors="pt").to(model.device)
|
30 |
+
|
31 |
+
generation_config = GenerationConfig(
|
32 |
+
do_sample=True,
|
33 |
+
max_new_tokens=100,
|
34 |
+
temperature=0.3,
|
35 |
+
repetition_penalty=1.1,
|
36 |
+
no_repeat_ngram_size=0
|
37 |
+
)
|
38 |
+
response = model.generate(**inputs, generation_config=generation_config)
|
39 |
+
print(tokenizer.decode(outputs[0]))
|
40 |
+
```
|
41 |
+
|
42 |
+
注意,模型训练时添加了 special token `<|End|>` 作为结束符,上述代码在生成式若不能自动停止,可定义 `KeywordsStoppingCriteria` 类,并将其对象传参至 `model.generate()` 函数。
|
43 |
+
|
44 |
+
```python
|
45 |
+
class KeywordsStoppingCriteria(StoppingCriteria):
|
46 |
+
def __init__(self, keywords_ids:list):
|
47 |
+
self.keywords = keywords_ids
|
48 |
+
|
49 |
+
def __call__(self, input_ids: torch.LongTensor, scores: torch.FloatTensor, **kwargs) -> bool:
|
50 |
+
if input_ids[0][-1] in self.keywords:
|
51 |
+
return True
|
52 |
+
return False
|
53 |
+
```
|
54 |
+
|
55 |
+
```python
|
56 |
+
stop_criteria_7b = KeywordsStoppingCriteria([yayi_7b_tokenizer.encode(w)[0] for w in ["<|End|>"]])
|
57 |
+
...
|
58 |
+
response = model.generate(**inputs, generation_config=generation_config, stop_criteria=stop_criteria_7b)
|
59 |
+
```
|
60 |
+
|
61 |
+
|
62 |
+
## 相关协议
|
63 |
+
|
64 |
+
### 局限性
|
65 |
+
基于当前数据和基础模型训练得到的SFT模型,在效果上仍存在以下问题:
|
66 |
+
|
67 |
+
1. 在涉及事实性的指令上可能会产生违背事实的错误回答。
|
68 |
+
2. 对于具备危害性的指令无法很好的鉴别,可能会产生危害性言论。
|
69 |
+
3. 在一些涉及推理、代码、多轮对话等场景下模型的能力仍有待提高。
|
70 |
+
|
71 |
+
### 免责声明
|
72 |
+
|
73 |
+
基于以上模型局限性,我们要求开发者仅将我们开源的代码、数据、模型及后续用此项目生成的衍生物用于研究目的,不得用于商业用途,以及其他会对社会带来危害的用途。请谨慎鉴别和使用雅意大模型生成的内容,请勿将生成的有害内容传播至互联网。若产生不良后果,由传播者自负。
|
74 |
+
|
75 |
+
本项目仅可应用于研究目的,项目开发者不承担任何因使用本项目(包含但不限于数据、模型、代码等)导致的危害或损失。详细请参考[免责声明](https://github.com/wenge-research/YaYi/blob/main/DISCLAIMER)。
|
76 |
+
|
77 |
+
### 开源协议
|
78 |
+
|
79 |
+
本项目中的代码依照 [Apache-2.0](https://github.com/wenge-research/YaYi/blob/main/LICENSE) 协议开源,数据采用 [CC BY-NC 4.0](https://github.com/wenge-research/YaYi/blob/main/LICENSE_DATA) 协议,YaYi 系列模型权重的使用则需要遵循 [Model License](https://github.com/wenge-research/YaYi/blob/main/LICENSE_MODEL)。
|
80 |
+
|
81 |
+
## 致谢
|
82 |
+
- 本项目使用了 BigScience 的 [bloomz-7b-mt](https://huggingface.co/bigscience/bloomz-7b1-mt) 模型权重作为初始化权重,并基于词表进行扩展;
|
83 |
+
- 本项目训练代码参考了 Databricks 的 [dolly](https://github.com/databrickslabs/dolly) 项目及 Huggingface [transformers](https://github.com/huggingface/transformers) 库;
|
84 |
+
- 本项目分布式训练使用了 Microsoft 的 [DeepSpeed](https://github.com/microsoft/deepspeed) 分布式训练工具及 Huggingface transformers 文档中的 [ZeRO stage 2](https://huggingface.co/docs/transformers/main_classes/deepspeed#zero2-config) 配置文件;
|