diff options
Diffstat (limited to 'data/recursive_dataset.py')
| -rw-r--r-- | data/recursive_dataset.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/data/recursive_dataset.py b/data/recursive_dataset.py index 1eccef7..84a6307 100644 --- a/data/recursive_dataset.py +++ b/data/recursive_dataset.py @@ -17,6 +17,7 @@ class RecursiveDataset(BaseDataset): def __getitem__(self, index): A_path = self.next_image + print('next image: ' + A_path) A_img = Image.open(A_path).convert('RGB') A = self.transform(A_img) if self.opt.which_direction == 'BtoA': |
