Skip to content

Commit

Permalink
Clean-up
Browse files Browse the repository at this point in the history
  • Loading branch information
wpeebles committed Feb 2, 2022
1 parent 3da3423 commit 1f64782
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion prepare_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ def load_spair_data(path, size, out_path, category='cat', split='test'):


def load_image_folder(path, pattern):
files = sorted(glob(f'{path}/{pattern}'))[420:1980]
files = sorted(glob(f'{path}/{pattern}'))
bboxes = [None] * len(files) # This means no bounding boxes are used
return files, bboxes

Expand Down

0 comments on commit 1f64782

Please sign in to comment.