Nanobit commited on
Commit
7bc28eb
1 Parent(s): 29273b5

Add more data formats

Browse files
Files changed (1) hide show
  1. README.md +11 -0
README.md CHANGED
@@ -97,6 +97,17 @@ Have dataset(s) in one of the following format (JSONL recommended):
97
  ```json
98
  {"instruction": "...", "input": "...", "output": "...", "reflection": "...", "corrected": "..."}
99
  ```
 
 
 
 
 
 
 
 
 
 
 
100
 
101
  > Have some new format to propose? Check if it's already defined in [data.py](src/axolotl/utils/data.py) in `dev` branch!
102
 
 
97
  ```json
98
  {"instruction": "...", "input": "...", "output": "...", "reflection": "...", "corrected": "..."}
99
  ```
100
+ - `explainchoice`: question, choices, (solution OR explanation)
101
+ ```json
102
+ {"question": "...", "choices": ["..."], "solution": "...", "explanation": "..."}
103
+ ```
104
+ - `concisechoice`: question, choices, (solution OR explanation)
105
+ ```json
106
+ {"question": "...", "choices": ["..."], "solution": "...", "explanation": "..."}
107
+ - `summarizetldr`: article and summary
108
+ ```json
109
+ {"article": "...", "summary": "..."}
110
+ ```
111
 
112
  > Have some new format to propose? Check if it's already defined in [data.py](src/axolotl/utils/data.py) in `dev` branch!
113