Nanobit commited on
Commit
729c299
1 Parent(s): 86a91e2

Feat(doc): Improve sharegpt doc (#378)

Browse files

* Feat(doc): Improve sharegpt doc

* Fix typo

Files changed (1) hide show
  1. README.md +5 -1
README.md CHANGED
@@ -136,7 +136,7 @@ Have dataset(s) in one of the following format (JSONL recommended):
136
  ```json
137
  {"instruction": "...", "input": "...", "output": "..."}
138
  ```
139
- - `sharegpt:chat`: conversations
140
  ```json
141
  {"conversations": [{"from": "...", "value": "..."}]}
142
  ```
@@ -225,6 +225,10 @@ Have dataset(s) in one of the following format (JSONL recommended):
225
  ```json
226
  {"conversations": [{"role": "...", "value": "..."}]}
227
  ```
 
 
 
 
228
  - `sharegpt_jokes`: creates a chat where bot is asked to tell a joke, then explain why the joke is funny
229
  ```json
230
  {"conversations": [{"title": "...", "text": "...", "explanation": "..."}]}
 
136
  ```json
137
  {"instruction": "...", "input": "...", "output": "..."}
138
  ```
139
+ - `sharegpt:chat`: conversations where `from` is `human`/`gpt`
140
  ```json
141
  {"conversations": [{"from": "...", "value": "..."}]}
142
  ```
 
225
  ```json
226
  {"conversations": [{"role": "...", "value": "..."}]}
227
  ```
228
+ - `sharegpt_simple.load_guanaco`: conversations where `from` is `prompter`/`assistant` instead of default sharegpt
229
+ ```json
230
+ {"conversations": [{"from": "...", "value": "..."}]}
231
+ ```
232
  - `sharegpt_jokes`: creates a chat where bot is asked to tell a joke, then explain why the joke is funny
233
  ```json
234
  {"conversations": [{"title": "...", "text": "...", "explanation": "..."}]}