Преглед изворни кода

Filter the None labels (#705)

* the value should be a list to unpacking

* filter the None labels
5.0
tkianai GitHub пре 4 година
родитељ
комит
542833c997
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      utils/datasets.py

+ 1
- 1
utils/datasets.py Прегледај датотеку

@@ -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…
Откажи
Сачувај