winglian commited on
Commit
5b33e29
1 Parent(s): 4ac9e25

update docs

Browse files
Files changed (1) hide show
  1. README.md +20 -0
README.md CHANGED
@@ -165,10 +165,30 @@ Have dataset(s) in one of the following format (JSONL recommended):
165
  ```json
166
  {"article": "...", "summary": "..."}
167
  ```
 
 
 
 
168
  - `alpaca_chat.load_qa`: question and answer for alpaca chat
169
  ```json
170
  {"question": "...", "answer": "..."}
171
  ```
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
  - `creative_acr.load_answer`: instruction and revision
173
  ```json
174
  {"instruction": "...", "revision": "..."}
 
165
  ```json
166
  {"article": "...", "summary": "..."}
167
  ```
168
+ - `alpaca_chat`: basic instruct for alpaca chat
169
+ ```json
170
+ {"instruction": "...", "input": "...", "response": "..."}
171
+ ```
172
  - `alpaca_chat.load_qa`: question and answer for alpaca chat
173
  ```json
174
  {"question": "...", "answer": "..."}
175
  ```
176
+ - `alpaca_chat.load_concise`: question and answer for alpaca chat, for concise answers
177
+ ```json
178
+ {"instruction": "...", "input": "...", "response": "..."}
179
+ ```
180
+ - `alpaca_chat.load_camel_ai`: question and answer for alpaca chat, for load_camel_ai
181
+ ```json
182
+ {"message_1": "...", "message_2": "..."}
183
+ ```
184
+ - `context_qa`: in context question answering from an article
185
+ ```json
186
+ {"article": "...", "question": "...", "answer": "..."}
187
+ ```
188
+ - `context_qa.load_404`: in context question answering from an article, with default response for no answer from context
189
+ ```json
190
+ {"article": "...", "unanswerable_question": "..."}
191
+ ```
192
  - `creative_acr.load_answer`: instruction and revision
193
  ```json
194
  {"instruction": "...", "revision": "..."}