From 7bc28eb8a8bf8786001c80afc991a8d4d4145b9c Mon Sep 17 00:00:00 2001 From: NanoCode012 Date: Thu, 25 May 2023 17:43:37 +0900 Subject: [PATCH] Add more data formats --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index 407e03ed3..1bab0722f 100644 --- a/README.md +++ b/README.md @@ -97,6 +97,17 @@ Have dataset(s) in one of the following format (JSONL recommended): ```json {"instruction": "...", "input": "...", "output": "...", "reflection": "...", "corrected": "..."} ``` +- `explainchoice`: question, choices, (solution OR explanation) + ```json + {"question": "...", "choices": ["..."], "solution": "...", "explanation": "..."} + ``` +- `concisechoice`: question, choices, (solution OR explanation) + ```json + {"question": "...", "choices": ["..."], "solution": "...", "explanation": "..."} +- `summarizetldr`: article and summary + ```json + {"article": "...", "summary": "..."} + ``` > Have some new format to propose? Check if it's already defined in [data.py](src/axolotl/utils/data.py) in `dev` branch!