Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,37 @@
|
|
1 |
---
|
2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
license: apache-2.0
|
3 |
+
datasets:
|
4 |
+
- Azure99/blossom-chat-v1
|
5 |
+
language:
|
6 |
+
- zh
|
7 |
+
- en
|
8 |
---
|
9 |
+
# **BLOSSOM-v1-baichuan-7b**
|
10 |
+
|
11 |
+
### 介绍
|
12 |
+
|
13 |
+
Blossom是一个对话式语言模型,基于Baichuan-7b预训练模型,在60K Blossom chat数据集上进行指令精调得来。
|
14 |
+
|
15 |
+
### 推理
|
16 |
+
|
17 |
+
推理采用对话续写的形式。
|
18 |
+
|
19 |
+
单轮对话
|
20 |
+
|
21 |
+
```
|
22 |
+
A chat between a human and an artificial intelligence bot. The bot gives helpful, detailed, and polite answers to the human's questions.
|
23 |
+
|Human|: 你好
|
24 |
+
|Bot|:
|
25 |
+
```
|
26 |
+
|
27 |
+
多轮对话
|
28 |
+
|
29 |
+
```
|
30 |
+
A chat between a human and an artificial intelligence bot. The bot gives helpful, detailed, and polite answers to the human's questions.
|
31 |
+
|Human|: 你好
|
32 |
+
|Bot|: 你好,有什么我能帮助你的?</s>
|
33 |
+
|Human|: 介绍下中国的首都吧
|
34 |
+
|Bot|:
|
35 |
+
```
|
36 |
+
|
37 |
+
注意:在历史对话的Bot输出结尾,拼接一个</s>
|