Filter the None labels (#705)

* the value should be a list to unpacking

* filter the None labels
pull/1/head
tkianai 5 years ago committed by GitHub
parent e71fd0ec0b
commit 542833c997
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -375,7 +375,7 @@ class LoadImagesAndLabels(Dataset): # for training/testing
pbar = tqdm(self.label_files)
for i, file in enumerate(pbar):
l = self.labels[i] # label
if l.shape[0]:
if l is not None and l.shape[0]:
assert l.shape[1] == 5, '> 5 label columns: %s' % file
assert (l >= 0).all(), 'negative labels: %s' % file
assert (l[:, 1:] <= 1).all(), 'non-normalized or out of bounds coordinate labels: %s' % file

Loading…
Cancel
Save