From 4604b649fe44eddd3c61e63d88e497f1203ae489 Mon Sep 17 00:00:00 2001 From: Raffi Khatchadourian Date: Wed, 7 Aug 2024 12:40:51 -0400 Subject: [PATCH] Workaround https://github.com/tensorflow/models/issues/8777. --- research/delf/delf/python/training/build_image_dataset.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/research/delf/delf/python/training/build_image_dataset.py b/research/delf/delf/python/training/build_image_dataset.py index 3ce2f19da56..7e60f82f2b2 100644 --- a/research/delf/delf/python/training/build_image_dataset.py +++ b/research/delf/delf/python/training/build_image_dataset.py @@ -83,10 +83,10 @@ flags.DEFINE_float('validation_split_size', 0.2, '(Optional) The size of the VALIDATION split as a fraction' 'of the train dataset.') -flags.DEFINE_integer('seed', 0, - '(Optional) The seed to be used while shuffling the train' - 'dataset when generating the TRAIN and VALIDATION splits.' - 'Recommended for splits reproducibility purposes.') +# flags.DEFINE_integer('seed', 0, + # '(Optional) The seed to be used while shuffling the train' + # 'dataset when generating the TRAIN and VALIDATION splits.' + # 'Recommended for splits reproducibility purposes.') _FILE_IDS_KEY = 'file_ids' _IMAGE_PATHS_KEY = 'image_paths'