diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-04-18 13:14:23 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-04-18 13:14:23 +0200 |
| commit | b57cac1c21fbbdc9986b0304594c31255b227d60 (patch) | |
| tree | 0a3ff432a5029d72ccb472e35de4e73bd6c9a582 /data | |
| parent | 07305b6fd7cb93e408d24cf783a7e75cfa093823 (diff) | |
k
Diffstat (limited to 'data')
| -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': |
