Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
datasets:
|
3 |
+
- tatsu-lab/alpaca
|
4 |
+
- wbbbbb/pclue
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
widget:
|
8 |
+
- text: |-
|
9 |
+
### Instruction:
|
10 |
+
我們如何減少空氣污染
|
11 |
+
|
12 |
+
### Response:
|
13 |
+
tags:
|
14 |
+
- text-generation-inference
|
15 |
+
---
|
16 |
+
|
17 |
+
具備繁體中文指令遵循能力的bloomz
|
18 |
+
|
19 |
+
請搭配Alpaca模板使用
|
20 |
+
```python
|
21 |
+
PROMPT_DICT = {
|
22 |
+
"prompt_input": (
|
23 |
+
"Below is an instruction that describes a task, paired with an input that provides further context. "
|
24 |
+
"Write a response that appropriately completes the request.\n\n"
|
25 |
+
"### Instruction:\n{instruction}\n\n### Input:\n{input}\n\n### Response:"
|
26 |
+
),
|
27 |
+
"prompt_no_input": (
|
28 |
+
"Below is an instruction that describes a task. "
|
29 |
+
"Write a response that appropriately completes the request.\n\n"
|
30 |
+
"### Instruction:\n{instruction}\n\n### Response:"
|
31 |
+
),
|
32 |
+
}
|
33 |
+
```
|