We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 23def5d commit 16c27a5Copy full SHA for 16c27a5
kitti_dataloader.py
@@ -23,17 +23,13 @@ def find_classes(dir):
23
24
25
def make_dataset(dir, class_to_idx):
26
- print("make dataset was called.")
27
images = []
28
dir = os.path.expanduser(dir)
29
- print(dir)
30
for target in sorted(os.listdir(dir)):
31
- # print(target)
32
d = os.path.join(dir, target)
33
34
if not os.path.isdir(d):
35
continue
36
- print(len(sorted(os.walk(d))))
37
for root, _, fnames in sorted(os.walk(d)):
38
for fname in sorted(fnames):
39
if is_image_file(fname):
0 commit comments