From 729c29925692736a850461d9a89f7ad30335126c Mon Sep 17 00:00:00 2001 From: NanoCode012 Date: Mon, 14 Aug 2023 00:36:00 +0900 Subject: [PATCH] Feat(doc): Improve sharegpt doc (#378) * Feat(doc): Improve sharegpt doc * Fix typo --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) 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": "..."}]}