diff --git a/README.md b/README.md index 268d5a752..0f9a5c632 100644 --- a/README.md +++ b/README.md @@ -136,7 +136,7 @@ Have dataset(s) in one of the following format (JSONL recommended): ```json {"instruction": "...", "input": "...", "output": "..."} ``` -- `sharegpt:chat`: conversations +- `sharegpt:chat`: conversations where `from` is `human`/`gpt` ```json {"conversations": [{"from": "...", "value": "..."}]} ``` @@ -225,6 +225,10 @@ Have dataset(s) in one of the following format (JSONL recommended): ```json {"conversations": [{"role": "...", "value": "..."}]} ``` +- `sharegpt_simple.load_guanaco`: conversations where `from` is `prompter`/`assistant` instead of default sharegpt + ```json + {"conversations": [{"from": "...", "value": "..."}]} + ``` - `sharegpt_jokes`: creates a chat where bot is asked to tell a joke, then explain why the joke is funny ```json {"conversations": [{"title": "...", "text": "...", "explanation": "..."}]}