diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-07 18:10:35 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-07 18:10:35 +0200 |
| commit | e55191b18409d77f939baf21421abaff04752216 (patch) | |
| tree | e03b02dc1b857a973b3c9f3df4a673fb3ba89b21 /data/recursive_dataset.py | |
| parent | 66b4496bf5ade6f8c9b515cf7d46b996af3b5b49 (diff) | |
debuggin..
Diffstat (limited to 'data/recursive_dataset.py')
| -rw-r--r-- | data/recursive_dataset.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/data/recursive_dataset.py b/data/recursive_dataset.py index 1460567..f1791d7 100644 --- a/data/recursive_dataset.py +++ b/data/recursive_dataset.py @@ -25,9 +25,10 @@ class RecursiveDataset(BaseDataset): print('oops: {}'.format(A_path2)) A_path = A_path2 else: - print('not there yet...') + print('not there yet... {}'.format(A_path)) while not os.path.exists(A_path): gevent.sleep(self.opt.poll_delay) + print("got {}".format(A_path)) A_img = Image.open(A_path).convert('RGB') A = self.transform(A_img) if self.opt.which_direction == 'BtoA': |
