Update README.md
Browse files
README.md
CHANGED
@@ -69,10 +69,12 @@ We trained models using datasets of different sizes (200,000, 600,000, and 1,000
|
|
69 |
|LR_scheduler | linear |
|
70 |
|
71 |
## Use model
|
72 |
-
|
73 |
-
|
74 |
-
|
|
|
75 |
|
|
|
76 |
``` python
|
77 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
78 |
import sys
|
@@ -146,6 +148,11 @@ BELLE模型以Bloomz-7b1-mt为基础,在 1.0M 条中文数据上,结合Stanf
|
|
146 |
|LR_scheduler | linear |
|
147 |
|
148 |
## 使用模型
|
|
|
|
|
|
|
|
|
|
|
149 |
通过AutoModelForCausalLM即可直接载入模型并使用。
|
150 |
|
151 |
``` python
|
|
|
69 |
|LR_scheduler | linear |
|
70 |
|
71 |
## Use model
|
72 |
+
Please note that the input should be formatted as follows in both **training** and **inference**.
|
73 |
+
``` python
|
74 |
+
Human: {input} \n\nAssistant:
|
75 |
+
```
|
76 |
|
77 |
+
BELLE can be easily loaded with AutoModelForCausalLM.
|
78 |
``` python
|
79 |
from transformers import AutoTokenizer, AutoModelForCausalLM
|
80 |
import sys
|
|
|
148 |
|LR_scheduler | linear |
|
149 |
|
150 |
## 使用模型
|
151 |
+
请注意,在训练和推理时,模型的输入应该处理成如下形式:
|
152 |
+
``` python
|
153 |
+
Human: {input} \n\nAssistant:
|
154 |
+
```
|
155 |
+
|
156 |
通过AutoModelForCausalLM即可直接载入模型并使用。
|
157 |
|
158 |
``` python
|