Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cache v0.3: improved corrupt image/label reporting #3676

Merged
merged 2 commits into from
Jun 18, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
cleanup
  • Loading branch information
glenn-jocher authored Jun 18, 2021
commit ec2d0b069ba64819ac45d64f83db10c611aeb381
2 changes: 1 addition & 1 deletion utils/datasets.py
Original file line number Diff line number Diff line change
Expand Up @@ -474,9 +474,9 @@ def cache_labels(self, path=Path('./labels.cache'), prefix=''):
nc += nc_f
if im_file:
x[im_file] = [l, shape, segments]
pbar.desc = f"{desc}{nf} found, {nm} missing, {ne} empty, {nc} corrupted"
if msg:
msgs.append(msg)
pbar.desc = f"{desc}{nf} found, {nm} missing, {ne} empty, {nc} corrupted"

pbar.close()
if msgs:
Expand Down