diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-04-18 13:39:13 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-04-18 13:39:13 +0200 |
| commit | f43e17d69c7121ff658dcca4aecf22d7a10c94f0 (patch) | |
| tree | 77b5f3b4c18915c4bb82ec6edce7082ce1bcf558 | |
| parent | 615785cf3ee1c8e8c6c0a6c9a9fdbe121b277644 (diff) | |
k
| -rw-r--r-- | data/__init__.py | 2 | ||||
| -rw-r--r-- | test.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/data/__init__.py b/data/__init__.py index 6da79f3..cd868fc 100644 --- a/data/__init__.py +++ b/data/__init__.py @@ -64,7 +64,7 @@ class CustomDatasetDataLoader(BaseDataLoader): class RecursiveDatasetDataLoader(BaseDataLoader): def name(self): - return 'CustomDatasetDataLoader' + return 'RecursiveDatasetDataLoader' def initialize(self, opt): #BaseDataLoader.initialize(self, opt) @@ -32,7 +32,7 @@ if __name__ == '__main__': print('%04d: process image... %s' % (i, img_path)) ims = visualizer.save_images(webpage, visuals, img_path, aspect_ratio=opt.aspect_ratio) print(dataset.name()) - if dataset.name() == 'RecursiveImageDataset': + if dataset.name() == 'RecursiveDatasetDataLoader': # dataset.append(ims) print(ims) |
