Datasets:
Tasks:
Text Generation
Modalities:
Text
Formats:
parquet
Languages:
English
Size:
10K - 100K
License:
Update README.md
Browse files
README.md
CHANGED
@@ -30,4 +30,26 @@ This dataset is [timdettmers/openassistant-guanaco](https://huggingface.co/datas
|
|
30 |
to be the Llama 2 prompt format (based on [this Reddit post](https://www.reddit.com/r/LocalLLaMA/comments/155po2p/get_llama_2_prompt_format_right/)).
|
31 |
It is otherwise unchanged.
|
32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
33 |
The license is the same as the original, Apache 2.0.
|
|
|
30 |
to be the Llama 2 prompt format (based on [this Reddit post](https://www.reddit.com/r/LocalLLaMA/comments/155po2p/get_llama_2_prompt_format_right/)).
|
31 |
It is otherwise unchanged.
|
32 |
|
33 |
+
The format is like this:
|
34 |
+
|
35 |
+
```
|
36 |
+
<s>[INST] <<SYS>>
|
37 |
+
You are a helpful, respectful and honest assistant. Always answer as helpfully as possible, while being safe. Your answers should not include any harmful, unethical, racist, sexist, toxic, dangerous, or illegal content. Please ensure that your responses are socially unbiased and positive in nature.
|
38 |
+
|
39 |
+
If a question does not make any sense, or is not factually coherent, explain why instead of answering something not correct. If you don't know the answer to a question, please don't share false information.
|
40 |
+
<</SYS>>
|
41 |
+
|
42 |
+
{question} [/INST]
|
43 |
+
{response}
|
44 |
+
```
|
45 |
+
|
46 |
+
...where `{question}` is what the user asks first, and `{response}` is how the model is expected to respond. Further
|
47 |
+
conversation turns are simply appended like this:
|
48 |
+
|
49 |
+
```
|
50 |
+
[INST]
|
51 |
+
{next_question}[/INST]
|
52 |
+
{response}
|
53 |
+
```
|
54 |
+
|
55 |
The license is the same as the original, Apache 2.0.
|