From edb88b4be341f74920a8438e2055c29877141463 Mon Sep 17 00:00:00 2001 From: Vignesh Kothapalli Date: Fri, 24 Jul 2020 04:07:19 +0530 Subject: [PATCH] fixed docstring for check_validation_split_arg --- tensorflow/python/keras/preprocessing/dataset_utils.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tensorflow/python/keras/preprocessing/dataset_utils.py b/tensorflow/python/keras/preprocessing/dataset_utils.py index 055f37e5ca2..09e6485a492 100644 --- a/tensorflow/python/keras/preprocessing/dataset_utils.py +++ b/tensorflow/python/keras/preprocessing/dataset_utils.py @@ -215,8 +215,7 @@ def check_validation_split_arg(validation_split, subset, shuffle, seed): """Raise errors in case of invalid argument values. Args: - shuffle: Whether to shuffle the data. Default: True. - If set to False, sorts the data in alphanumeric order. + shuffle: Whether to shuffle the data. Either True or False. seed: Optional random seed for shuffling and transformations. validation_split: Optional float between 0 and 1, fraction of data to reserve for validation.