Remove redundant formats
Browse files
README.md
CHANGED
|
@@ -81,12 +81,8 @@ Have dataset(s) in one of the following format (JSONL recommended):
|
|
| 81 |
|
| 82 |
<details>
|
| 83 |
|
| 84 |
-
<summary>See
|
| 85 |
|
| 86 |
-
- `alpaca`: instruction; input(optional)
|
| 87 |
-
```json
|
| 88 |
-
{"instruction": "...", "input": "...", "output": "..."}
|
| 89 |
-
```
|
| 90 |
- `jeopardy`: question and answer
|
| 91 |
```json
|
| 92 |
{"question": "...", "category": "...", "answer": "..."}
|
|
@@ -103,14 +99,6 @@ Have dataset(s) in one of the following format (JSONL recommended):
|
|
| 103 |
```json
|
| 104 |
{"instruction": "...", "input": "...", "output": "...", "reflection": "...", "corrected": "..."}
|
| 105 |
```
|
| 106 |
-
- `sharegpt`: conversations
|
| 107 |
-
```json
|
| 108 |
-
{"conversations": [{"from": "...", "value": "..."}]}
|
| 109 |
-
```
|
| 110 |
-
- `completion`: raw corpus
|
| 111 |
-
```json
|
| 112 |
-
{"text": "..."}
|
| 113 |
-
```
|
| 114 |
|
| 115 |
> Have some new format to propose? Check if it's already defined in [data.py](src/axolotl/utils/data.py) in `dev` branch!
|
| 116 |
|
|
|
|
| 81 |
|
| 82 |
<details>
|
| 83 |
|
| 84 |
+
<summary>See other formats</summary>
|
| 85 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 86 |
- `jeopardy`: question and answer
|
| 87 |
```json
|
| 88 |
{"question": "...", "category": "...", "answer": "..."}
|
|
|
|
| 99 |
```json
|
| 100 |
{"instruction": "...", "input": "...", "output": "...", "reflection": "...", "corrected": "..."}
|
| 101 |
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 102 |
|
| 103 |
> Have some new format to propose? Check if it's already defined in [data.py](src/axolotl/utils/data.py) in `dev` branch!
|
| 104 |
|