From caddf9126b380a5617af6e8737f7b9ac16464c3f Mon Sep 17 00:00:00 2001 From: Joe Davison Date: Thu, 28 Jan 2021 09:21:58 -0500 Subject: [PATCH] tutorial typo --- docs/source/custom_datasets.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/custom_datasets.rst b/docs/source/custom_datasets.rst index 924435dd61..d28373c556 100644 --- a/docs/source/custom_datasets.rst +++ b/docs/source/custom_datasets.rst @@ -75,7 +75,7 @@ read this in. test_texts, test_labels = read_imdb_split('aclImdb/test') We now have a train and test dataset, but let's also also create a validation set which we can use for for evaluation -and tuning without training our test set results. Sklearn has a convenient utility for creating such splits: +and tuning without tainting our test set results. Sklearn has a convenient utility for creating such splits: .. code-block:: python