From ad625a5657d30ced1a1d44caae9bd0c825b10253 Mon Sep 17 00:00:00 2001 From: Mo Mirza Date: Wed, 25 Oct 2023 23:44:54 +0200 Subject: [PATCH] Fix typo --- docs/Dataset.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Dataset.md b/docs/Dataset.md index 4f31907cd..f2819862a 100644 --- a/docs/Dataset.md +++ b/docs/Dataset.md @@ -35,7 +35,7 @@ def get_custom_dataset(dataset_config, tokenizer, split: str): For an example `get_custom_dataset` you can look at the provided datasets in llama_recipes.datasets or [examples/custom_dataset.py](../examples/custom_dataset.py). The `dataset_config` in the above signature will be an instance of llama_recipes.configs.dataset.custom_dataset with the modifications made through the command line. The split signals wether to return the training or validation dataset. -The default function name is `get_custom_dataset` but this can be changes as described below. +The default function name is `get_custom_dataset` but this can be changed as described below. In order to start a training with the custom dataset we need to set the `--dataset` as well as the `--custom_dataset.file` parameter. ```