summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-06-07 20:11:34 +0200
committerJules Laplace <julescarbon@gmail.com>2018-06-07 20:11:34 +0200
commite2036eda34abb646f832e46b080e908068a1d467 (patch)
tree1464fd002647d5c17e7105390abc28d73f7b3f3c /data
parent75e899472335d069afd95456bfe1578a781184ca (diff)
debuggin..
Diffstat (limited to 'data')
-rw-r--r--data/recursive_dataset.py3
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)