diff options
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 863c385..dfa1d20 100644 --- a/data/recursive_dataset.py +++ b/data/recursive_dataset.py @@ -19,8 +19,9 @@ class RecursiveDataset(BaseDataset): def __getitem__(self, index): A_path = os.path.join(self.opt.render_dir, "frame_{:05d}.png".format(index)) - # print(A_path) + print("awaiting {}".format(A_path)) if not os.path.exists(A_path): + # print() while not os.path.exists(A_path): # print('sleeping for {}'.format(self.opt.poll_delay)) time.sleep(self.opt.poll_delay) |
