diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-17 09:29:58 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-17 09:29:58 +0200 |
| commit | 772b92fdab6c52cafe675f7429b29f443d7691a4 (patch) | |
| tree | db39736b07184b2995b278bf356c63e90235d735 | |
| parent | 953ce7fcc6cb5247ae92858c82239a52760f2b4f (diff) | |
logz
| -rw-r--r-- | data/recursive_dataset.py | 2 | ||||
| -rw-r--r-- | recursive.py | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/data/recursive_dataset.py b/data/recursive_dataset.py index e8d6c70..40b7ebf 100644 --- a/data/recursive_dataset.py +++ b/data/recursive_dataset.py @@ -18,7 +18,7 @@ class RecursiveDataset(BaseDataset): ### input A (label maps) A_path = os.path.join(self.opt.render_dir, "frame_{:05d}.png".format(index)) if not os.path.exists(A_path): - print("{} doesn't exist, waiting for it".format(A_path)) + # print("{} doesn't exist, waiting for it".format(A_path)) while not os.path.exists(A_path): # print('sleeping for {}'.format(self.opt.poll_delay)) time.sleep(self.opt.poll_delay) diff --git a/recursive.py b/recursive.py index 461f3e1..5ab6ff7 100644 --- a/recursive.py +++ b/recursive.py @@ -53,7 +53,6 @@ if not opt.engine and not opt.onnx: print(model) for i, data in enumerate(dataset): - print("iter...{}".format(i)) if i >= opt.how_many: break if opt.data_type == 16: |
