From fcd781c0741eee4ffa0fac2d44f709a8067d0f64 Mon Sep 17 00:00:00 2001 From: Katie Graham Date: Tue, 14 Feb 2023 15:00:29 -0800 Subject: [PATCH] Removed resolved FIXME note --- applications/vision/data/imagenet/__init__.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/applications/vision/data/imagenet/__init__.py b/applications/vision/data/imagenet/__init__.py index 4114e5743c7..a85ff92f92a 100644 --- a/applications/vision/data/imagenet/__init__.py +++ b/applications/vision/data/imagenet/__init__.py @@ -20,9 +20,6 @@ def make_data_reader(num_classes=1000, data_path=None): print("Setting up data reader") train_data_dir = os.path.join(data_path, 'train') test_data_dir = os.path.join(data_path, 'val') - #FIXME: This might not match the directory structure of the user's - # dataset. We could infer the labels from the directory structure, - # but the data reader is expecting a file. train_label_file = os.path.join(data_path, 'labels/train.txt') test_label_file = os.path.join(data_path, 'labels/val.txt')