summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-05-15 02:48:41 +0200
committerJules Laplace <julescarbon@gmail.com>2018-05-15 02:48:41 +0200
commitaac562f272f881dee8b787216f984d61a76afc1c (patch)
tree016dea61223d659c93369e849407af6e15d03547 /data
parent9473a840eb3d2382a3b261167f72f0416e93c8f3 (diff)
test
Diffstat (limited to 'data')
-rw-r--r--data/recursive_dataset.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/data/recursive_dataset.py b/data/recursive_dataset.py
index b1e0407..0605458 100644
--- a/data/recursive_dataset.py
+++ b/data/recursive_dataset.py
@@ -20,7 +20,7 @@ class RecursiveDataset(BaseDataset):
self.transform = get_transform(opt)
def __getitem__(self, index):
- A_path = self.opt.render_dir + self.opt.tag + "/frame_{:05d}.png".format(index)
+ A_path = self.opt.render_dir + "/frame_{:05d}.png".format(index)
while not os.path.exists(A_path):
print(A_path)
time.sleep(0.01)