README.md 12.3 KB
Newer Older
chenych's avatar
chenych committed
1
2
3
The [dataset_info.json](dataset_info.json) contains all available datasets. If you are using a custom dataset, please **make sure** to add a *dataset description* in `dataset_info.json` and specify `dataset: dataset_name` before training to use it.

Currently we support datasets in **alpaca** and **sharegpt** format.
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
4
5
6

```json
"dataset_name": {
chenych's avatar
chenych committed
7
8
9
10
  "hf_hub_url": "the name of the dataset repository on the Hugging Face hub. (if specified, ignore script_url, file_name and cloud_file_name)",
  "ms_hub_url": "the name of the dataset repository on the Model Scope hub. (if specified, ignore script_url, file_name and cloud_file_name)",
  "script_url": "the name of the directory containing a dataset loading script. (if specified, ignore file_name and cloud_file_name)",
  "cloud_file_name": "the name of the dataset file in s3/gcs cloud storage. (if specified, ignore file_name)",
chenych's avatar
chenych committed
11
12
13
  "file_name": "the name of the dataset folder or dataset file in this directory. (required if above are not specified)",
  "formatting": "the format of the dataset. (optional, default: alpaca, can be chosen from {alpaca, sharegpt})",
  "ranking": "whether the dataset is a preference dataset or not. (default: False)",
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
14
  "subset": "the name of the subset. (optional, default: None)",
chenych's avatar
chenych committed
15
  "split": "the name of dataset split to be used. (optional, default: train)",
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
16
  "folder": "the name of the folder of the dataset repository on the Hugging Face hub. (optional, default: None)",
chenych's avatar
chenych committed
17
  "num_samples": "the number of samples in the dataset to be used. (optional, default: None)",
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
18
19
20
21
22
23
24
  "columns (optional)": {
    "prompt": "the column name in the dataset containing the prompts. (default: instruction)",
    "query": "the column name in the dataset containing the queries. (default: input)",
    "response": "the column name in the dataset containing the responses. (default: output)",
    "history": "the column name in the dataset containing the histories. (default: None)",
    "messages": "the column name in the dataset containing the messages. (default: conversations)",
    "system": "the column name in the dataset containing the system prompts. (default: None)",
chenych's avatar
chenych committed
25
26
    "tools": "the column name in the dataset containing the tool description. (default: None)",
    "images": "the column name in the dataset containing the image inputs. (default: None)",
luopl's avatar
luopl committed
27
    "videos": "the column name in the dataset containing the videos inputs. (default: None)",
chenych's avatar
chenych committed
28
    "audios": "the column name in the dataset containing the audios inputs. (default: None)",
chenych's avatar
chenych committed
29
30
31
    "chosen": "the column name in the dataset containing the chosen answers. (default: None)",
    "rejected": "the column name in the dataset containing the rejected answers. (default: None)",
    "kto_tag": "the column name in the dataset containing the kto tags. (default: None)"
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
32
33
34
35
36
37
38
39
40
41
42
43
44
  },
  "tags (optional, used for the sharegpt format)": {
    "role_tag": "the key in the message represents the identity. (default: from)",
    "content_tag": "the key in the message represents the content. (default: value)",
    "user_tag": "the value of the role_tag represents the user. (default: human)",
    "assistant_tag": "the value of the role_tag represents the assistant. (default: gpt)",
    "observation_tag": "the value of the role_tag represents the tool results. (default: observation)",
    "function_tag": "the value of the role_tag represents the function call. (default: function_call)",
    "system_tag": "the value of the role_tag represents the system prompt. (default: system, can override system column)"
  }
}
```

chenych's avatar
chenych committed
45
46
47
48
49
## Alpaca Format

### Supervised Fine-Tuning Dataset

* [Example dataset](alpaca_en_demo.json)
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
50

chenych's avatar
chenych committed
51
In supervised fine-tuning, the `instruction` column will be concatenated with the `input` column and used as the human prompt, then the human prompt would be `instruction\ninput`. The `output` column represents the model response.
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
52

chenych's avatar
chenych committed
53
54
55
The `system` column will be used as the system prompt if specified.

The `history` column is a list consisting of string tuples representing prompt-response pairs in the history messages. Note that the responses in the history **will also be learned by the model** in supervised fine-tuning.
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
56
57
58
59

```json
[
  {
chenych's avatar
chenych committed
60
61
    "instruction": "human instruction (required)",
    "input": "human input (optional)",
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
62
63
64
    "output": "model response (required)",
    "system": "system prompt (optional)",
    "history": [
chenych's avatar
chenych committed
65
66
      ["human instruction in the first round (optional)", "model response in the first round (optional)"],
      ["human instruction in the second round (optional)", "model response in the second round (optional)"]
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
67
68
69
70
71
    ]
  }
]
```

chenych's avatar
chenych committed
72
Regarding the above dataset, the *dataset description* in `dataset_info.json` should be:
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
73
74
75

```json
"dataset_name": {
chenych's avatar
chenych committed
76
  "file_name": "data.json",
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
77
78
79
80
81
82
83
84
85
86
  "columns": {
    "prompt": "instruction",
    "query": "input",
    "response": "output",
    "system": "system",
    "history": "history"
  }
}
```

chenych's avatar
chenych committed
87
88
### Pre-training Dataset

chenych's avatar
chenych committed
89
- [Example dataset](c4_demo.jsonl)
chenych's avatar
chenych committed
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112

In pre-training, only the `text` column will be used for model learning.

```json
[
  {"text": "document"},
  {"text": "document"}
]
```

Regarding the above dataset, the *dataset description* in `dataset_info.json` should be:

```json
"dataset_name": {
  "file_name": "data.json",
  "columns": {
    "prompt": "text"
  }
}
```

### Preference Dataset

luopl's avatar
luopl committed
113
Preference datasets are used for reward modeling, DPO training, ORPO and SimPO training.
chenych's avatar
chenych committed
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144

It requires a better response in `chosen` column and a worse response in `rejected` column.

```json
[
  {
    "instruction": "human instruction (required)",
    "input": "human input (optional)",
    "chosen": "chosen answer (required)",
    "rejected": "rejected answer (required)"
  }
]
```

Regarding the above dataset, the *dataset description* in `dataset_info.json` should be:

```json
"dataset_name": {
  "file_name": "data.json",
  "ranking": true,
  "columns": {
    "prompt": "instruction",
    "query": "input",
    "chosen": "chosen",
    "rejected": "rejected"
  }
}
```

### KTO Dataset

luopl's avatar
luopl committed
145
An additional column `kto_tag` is required. Please refer to the [sharegpt](#sharegpt-format) format for details.
chenych's avatar
chenych committed
146

luopl's avatar
luopl committed
147
### Multimodal Image Dataset
chenych's avatar
chenych committed
148

luopl's avatar
luopl committed
149
An additional column `images` is required. Please refer to the [sharegpt](#sharegpt-format) format for details.
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
150

luopl's avatar
luopl committed
151
### Multimodal Video Dataset
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
152

luopl's avatar
luopl committed
153
An additional column `videos` is required. Please refer to the [sharegpt](#sharegpt-format) format for details.
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
154

chenych's avatar
chenych committed
155
156
157
158
### Multimodal Audio Dataset

An additional column `audios` is required. Please refer to the [sharegpt](#sharegpt-format) format for details.

chenych's avatar
chenych committed
159
## Sharegpt Format
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
160

chenych's avatar
chenych committed
161
### Supervised Fine-Tuning Dataset
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
162

chenych's avatar
chenych committed
163
164
165
166
167
- [Example dataset](glaive_toolcall_en_demo.json)

Compared to the alpaca format, the sharegpt format allows the datasets have **more roles**, such as human, gpt, observation and function. They are presented in a list of objects in the `conversations` column.

Note that the human and observation should appear in odd positions, while gpt and function should appear in even positions.
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
168
169
170
171
172
173
174

```json
[
  {
    "conversations": [
      {
        "from": "human",
chenych's avatar
chenych committed
175
176
177
178
179
180
181
182
183
        "value": "human instruction"
      },
      {
        "from": "function_call",
        "value": "tool arguments"
      },
      {
        "from": "observation",
        "value": "tool result"
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
184
185
186
187
188
189
190
191
192
193
194
195
      },
      {
        "from": "gpt",
        "value": "model response"
      }
    ],
    "system": "system prompt (optional)",
    "tools": "tool description (optional)"
  }
]
```

chenych's avatar
chenych committed
196
Regarding the above dataset, the *dataset description* in `dataset_info.json` should be:
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
197
198
199

```json
"dataset_name": {
chenych's avatar
chenych committed
200
201
  "file_name": "data.json",
  "formatting": "sharegpt",
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
202
203
204
205
  "columns": {
    "messages": "conversations",
    "system": "system",
    "tools": "tools"
chenych's avatar
chenych committed
206
207
208
209
  }
}
```

luopl's avatar
luopl committed
210
211
212
213
### Pre-training Dataset

Not yet supported, please use the [alpaca](#alpaca-format) format.

chenych's avatar
chenych committed
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
### Preference Dataset

- [Example dataset](dpo_en_demo.json)

Preference datasets in sharegpt format also require a better message in `chosen` column and a worse message in `rejected` column.

```json
[
  {
    "conversations": [
      {
        "from": "human",
        "value": "human instruction"
      },
      {
        "from": "gpt",
        "value": "model response"
      },
      {
        "from": "human",
        "value": "human instruction"
      }
    ],
    "chosen": {
      "from": "gpt",
      "value": "chosen answer (required)"
    },
    "rejected": {
      "from": "gpt",
      "value": "rejected answer (required)"
    }
  }
]
```

Regarding the above dataset, the *dataset description* in `dataset_info.json` should be:

```json
"dataset_name": {
  "file_name": "data.json",
  "formatting": "sharegpt",
  "ranking": true,
  "columns": {
    "messages": "conversations",
    "chosen": "chosen",
    "rejected": "rejected"
  }
}
```

luopl's avatar
luopl committed
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
### KTO Dataset

- [Example dataset](kto_en_demo.json)

KTO datasets require a extra `kto_tag` column containing the boolean human feedback.

```json
[
  {
    "conversations": [
      {
        "from": "human",
        "value": "human instruction"
      },
      {
        "from": "gpt",
        "value": "model response"
      }
    ],
    "kto_tag": "human feedback [true/false] (required)"
  }
]
```

Regarding the above dataset, the *dataset description* in `dataset_info.json` should be:

```json
"dataset_name": {
  "file_name": "data.json",
  "formatting": "sharegpt",
  "columns": {
    "messages": "conversations",
    "kto_tag": "kto_tag"
  }
}
```

### Multimodal Image Dataset

- [Example dataset](mllm_demo.json)

chenych's avatar
chenych committed
305
Multimodal image datasets require an `images` column containing the paths to the input images.
luopl's avatar
luopl committed
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382

The number of images should be identical to the `<image>` tokens in the conversations.

```json
[
  {
    "conversations": [
      {
        "from": "human",
        "value": "<image>human instruction"
      },
      {
        "from": "gpt",
        "value": "model response"
      }
    ],
    "images": [
      "image path (required)"
    ]
  }
]
```

Regarding the above dataset, the *dataset description* in `dataset_info.json` should be:

```json
"dataset_name": {
  "file_name": "data.json",
  "formatting": "sharegpt",
  "columns": {
    "messages": "conversations",
    "images": "images"
  }
}
```

### Multimodal Video Dataset

- [Example dataset](mllm_video_demo.json)

Multimodal video datasets require a `videos` column containing the paths to the input videos.

The number of videos should be identical to the `<video>` tokens in the conversations.

```json
[
  {
    "conversations": [
      {
        "from": "human",
        "value": "<video>human instruction"
      },
      {
        "from": "gpt",
        "value": "model response"
      }
    ],
    "videos": [
      "video path (required)"
    ]
  }
]
```

Regarding the above dataset, the *dataset description* in `dataset_info.json` should be:

```json
"dataset_name": {
  "file_name": "data.json",
  "formatting": "sharegpt",
  "columns": {
    "messages": "conversations",
    "videos": "videos"
  }
}
```

chenych's avatar
chenych committed
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
### Multimodal Audio Dataset

- [Example dataset](mllm_audio_demo.json)

Multimodal audio datasets require an `audios` column containing the paths to the input audios.

The number of audios should be identical to the `<audio>` tokens in the conversations.

```json
[
  {
    "conversations": [
      {
        "from": "human",
        "value": "<audio>human instruction"
      },
      {
        "from": "gpt",
        "value": "model response"
      }
    ],
    "audios": [
      "audio path (required)"
    ]
  }
]
```

Regarding the above dataset, the *dataset description* in `dataset_info.json` should be:

```json
"dataset_name": {
  "file_name": "data.json",
  "formatting": "sharegpt",
  "columns": {
    "messages": "conversations",
    "audios": "audios"
  }
}
```

chenych's avatar
chenych committed
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
### OpenAI Format

The openai format is simply a special case of the sharegpt format, where the first message may be a system prompt.

```json
[
  {
    "messages": [
      {
        "role": "system",
        "content": "system prompt (optional)"
      },
      {
        "role": "user",
        "content": "human instruction"
      },
      {
        "role": "assistant",
        "content": "model response"
      }
    ]
  }
]
```

Regarding the above dataset, the *dataset description* in `dataset_info.json` should be:

```json
"dataset_name": {
  "file_name": "data.json",
  "formatting": "sharegpt",
  "columns": {
    "messages": "messages"
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
457
458
  },
  "tags": {
chenych's avatar
chenych committed
459
460
461
462
463
    "role_tag": "role",
    "content_tag": "content",
    "user_tag": "user",
    "assistant_tag": "assistant",
    "system_tag": "system"
Rayyyyy's avatar
V0.6.3  
Rayyyyy committed
464
465
466
  }
}
```