Skip to content

Commit 16c27a5

Browse files
committed
remove debug statement from kitti_dataloader
1 parent 23def5d commit 16c27a5

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

kitti_dataloader.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,17 +23,13 @@ def find_classes(dir):
2323

2424

2525
def make_dataset(dir, class_to_idx):
26-
print("make dataset was called.")
2726
images = []
2827
dir = os.path.expanduser(dir)
29-
print(dir)
3028
for target in sorted(os.listdir(dir)):
31-
# print(target)
3229
d = os.path.join(dir, target)
3330

3431
if not os.path.isdir(d):
3532
continue
36-
print(len(sorted(os.walk(d))))
3733
for root, _, fnames in sorted(os.walk(d)):
3834
for fname in sorted(fnames):
3935
if is_image_file(fname):

0 commit comments

Comments
 (0)