From e1873eae0525503381e331fc049852e76ecc331e Mon Sep 17 00:00:00 2001 From: Azat Date: Sun, 12 Nov 2023 23:37:17 +0000 Subject: [PATCH] Update README.md --- tutorials/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/tutorials/README.md b/tutorials/README.md index 9bddf84..e4767f3 100644 --- a/tutorials/README.md +++ b/tutorials/README.md @@ -11,12 +11,12 @@ Before uploading your dataset to Hugging Face, please make sure that it is in on We provide a tutorial on how to convert your dataset to each format. -- **Prompt Completion format** (https://github.com/higgsfield-ai/higgsfield/tutorials/prompt_completion.ipynb) -- **ChatGPT format** (https://github.com/higgsfield-ai/higgsfield/tutorials/chatgpt.ipynb) -- **Plain Text format** (https://github.com/higgsfield-ai/higgsfield/tutorials/text_format.ipynb) +- **Prompt Completion format** ([https://github.com/higgsfield-ai/higgsfield/tutorials/prompt_completion.ipynb](https://github.com/higgsfield-ai/higgsfield/blob/main/tutorials/prompt_completion.ipynb)) +- **ChatGPT format** ([https://github.com/higgsfield-ai/higgsfield/tutorials/chatgpt.ipynb](https://github.com/higgsfield-ai/higgsfield/blob/main/tutorials/chatgpt.ipynb)) +- **Plain Text format** ([https://github.com/higgsfield-ai/higgsfield/tutorials/text_format.ipynb](https://github.com/higgsfield-ai/higgsfield/blob/main/tutorials/text_format.ipynb)) ### Format: Prompt Completion -```json +```python prompt_completion = { "prompt": [ "prompt1", @@ -30,7 +30,7 @@ prompt_completion = { ``` ### Format: ChatGPT -```json +```python chatgpt_format = { "chatgpt": [ [ @@ -43,8 +43,8 @@ chatgpt_format = { ``` ### Format: Text -```json +```python text_format = { "text": ["text"] } -``` \ No newline at end of file +```