Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -14,4 +14,61 @@ configs:
|
|
14 |
data_files:
|
15 |
- split: train
|
16 |
path: data/train-*
|
|
|
|
|
|
|
17 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
14 |
data_files:
|
15 |
- split: train
|
16 |
path: data/train-*
|
17 |
+
license: cc-by-sa-3.0
|
18 |
+
language:
|
19 |
+
- en
|
20 |
---
|
21 |
+
|
22 |
+
# Dolly-15k-SFT
|
23 |
+
|
24 |
+
A version of [databricks/databricks-dolly-15k](https://huggingface.co/datasets/databricks/databricks-dolly-15k) made to be easy to use when Instruct fine-tuning LLMs
|
25 |
+
|
26 |
+
## Prompt template
|
27 |
+
|
28 |
+
The prompt template is the same as in [HuggingFaceTB/SmolLM-360M-Instruct](https://huggingface.co/HuggingFaceTB/SmolLM-360M-Instruct). No extra tokens added.
|
29 |
+
## System Prompts
|
30 |
+
|
31 |
+
### 2 different systems prompts have been used for when there is context or not.
|
32 |
+
|
33 |
+
#### When context is available
|
34 |
+
|
35 |
+
```
|
36 |
+
You are a knowledgeable assistant with access to a given context. Always provide responses that are relevant to the context provided.
|
37 |
+
```
|
38 |
+
|
39 |
+
#### When context is not available
|
40 |
+
|
41 |
+
```
|
42 |
+
You are a knowledgeable assistant that provides clear, concise, and accurate information on a wide range of topics. Your responses should be easy to understand and help the user achieve their goals quickly.
|
43 |
+
```
|
44 |
+
|
45 |
+
## Examples
|
46 |
+
|
47 |
+
#### Context available
|
48 |
+
```
|
49 |
+
<|im_start|>system
|
50 |
+
You are a knowledgeable assistant with access to a given context. Always provide responses that are relevant to the context provided.<|im_end|>
|
51 |
+
<|im_start|>user
|
52 |
+
Context: Virgin Australia, the trading name of Virgin Australia Airlines Pty Ltd, is an Australian-based airline. It is the largest airline by fleet size to use the Virgin brand. It commenced services on 31 August 2000 as Virgin Blue, with two aircraft on a single route. It suddenly found itself as a major airline in Australia's domestic market after the collapse of Ansett Australia in September 2001. The airline has since grown to directly serve 32 cities in Australia, from hubs in Brisbane, Melbourne and Sydney.
|
53 |
+
|
54 |
+
|
55 |
+
Question: When did Virgin Australia start operating?<|im_end|>
|
56 |
+
<|im_start|>assistant
|
57 |
+
Virgin Australia commenced services on 31 August 2000 as Virgin Blue, with two aircraft on a single route.<|im_end|>
|
58 |
+
```
|
59 |
+
|
60 |
+
#### When context not available
|
61 |
+
|
62 |
+
```
|
63 |
+
<|im_start|>system
|
64 |
+
You are a knowledgeable assistant that provides clear, concise, and accurate information on a wide range of topics. Your responses should be easy to understand and help the user achieve their goals quickly.<|im_end|>
|
65 |
+
<|im_start|>user
|
66 |
+
Which is a species of fish? Tope or Rope<|im_end|>
|
67 |
+
<|im_start|>assistant
|
68 |
+
Tope<|im_end|>
|
69 |
+
```
|
70 |
+
|
71 |
+
|
72 |
+
## License
|
73 |
+
|
74 |
+
[CC-BY-SA](https://creativecommons.org/licenses/by-sa/4.0/deed.en)
|