Move custom prompts out of hidden
Browse files
README.md
CHANGED
|
@@ -205,14 +205,18 @@ Have dataset(s) in one of the following format (JSONL recommended):
|
|
| 205 |
```json
|
| 206 |
{"conversations": [{"role": "...", "value": "..."}]}
|
| 207 |
```
|
| 208 |
-
- custom prompts structure:
|
| 209 |
-
1. Add your method to a file in [prompt_strategies](src/axolotl/prompt_strategies). Please see other files as example.
|
| 210 |
-
2. Use your custom file name as the dataset type.
|
| 211 |
|
| 212 |
</details>
|
| 213 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 214 |
Optionally, download some datasets, see [data/README.md](data/README.md)
|
| 215 |
|
|
|
|
|
|
|
| 216 |
### Config
|
| 217 |
|
| 218 |
See sample configs in [configs](configs) folder or [examples](examples) for quick start. It is recommended to duplicate and modify to your needs. The most important options are:
|
|
|
|
| 205 |
```json
|
| 206 |
{"conversations": [{"role": "...", "value": "..."}]}
|
| 207 |
```
|
|
|
|
|
|
|
|
|
|
| 208 |
|
| 209 |
</details>
|
| 210 |
|
| 211 |
+
#### How to add custom prompts
|
| 212 |
+
|
| 213 |
+
1. Add your method to a file in [prompt_strategies](src/axolotl/prompt_strategies). Please see other files as example.
|
| 214 |
+
2. Use your custom file name as the dataset type.
|
| 215 |
+
|
| 216 |
Optionally, download some datasets, see [data/README.md](data/README.md)
|
| 217 |
|
| 218 |
+
|
| 219 |
+
|
| 220 |
### Config
|
| 221 |
|
| 222 |
See sample configs in [configs](configs) folder or [examples](examples) for quick start. It is recommended to duplicate and modify to your needs. The most important options are:
|