Replace print() with logging.info() in trainloader (#3103)
Might indirectly help #3095 by providing better visibility on source of corruption.
This commit is contained in:
parent
25f8ab835e
commit
abfcf9eb79
|
|
@ -490,14 +490,14 @@ class LoadImagesAndLabels(Dataset): # for training/testing
|
||||||
x[im_file] = [l, shape, segments]
|
x[im_file] = [l, shape, segments]
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
nc += 1
|
nc += 1
|
||||||
print(f'{prefix}WARNING: Ignoring corrupted image and/or label {im_file}: {e}')
|
logging.info(f'{prefix}WARNING: Ignoring corrupted image and/or label {im_file}: {e}')
|
||||||
|
|
||||||
pbar.desc = f"{prefix}Scanning '{path.parent / path.stem}' images and labels... " \
|
pbar.desc = f"{prefix}Scanning '{path.parent / path.stem}' images and labels... " \
|
||||||
f"{nf} found, {nm} missing, {ne} empty, {nc} corrupted"
|
f"{nf} found, {nm} missing, {ne} empty, {nc} corrupted"
|
||||||
pbar.close()
|
pbar.close()
|
||||||
|
|
||||||
if nf == 0:
|
if nf == 0:
|
||||||
print(f'{prefix}WARNING: No labels found in {path}. See {help_url}')
|
logging.info(f'{prefix}WARNING: No labels found in {path}. See {help_url}')
|
||||||
|
|
||||||
x['hash'] = get_hash(self.label_files + self.img_files)
|
x['hash'] = get_hash(self.label_files + self.img_files)
|
||||||
x['results'] = nf, nm, ne, nc, i + 1
|
x['results'] = nf, nm, ne, nc, i + 1
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue