applies linter changes
This commit is contained in:
@@ -26,9 +26,9 @@ def get_label_grid(
|
|||||||
label_grid = np.empty(anchor_grid.shape[:-1], dtype=bool)
|
label_grid = np.empty(anchor_grid.shape[:-1], dtype=bool)
|
||||||
for (width, ratio, row, col), item in np.ndenumerate(anchor_grid):
|
for (width, ratio, row, col), item in np.ndenumerate(anchor_grid):
|
||||||
for gt in gts:
|
for gt in gts:
|
||||||
iou = iou(item, gt)
|
calculated_iou = iou(item, gt)
|
||||||
label_grid[width, ratio, row, col] = False
|
label_grid[width, ratio, row, col] = False
|
||||||
if iou >= min_iou:
|
if calculated_iou >= min_iou:
|
||||||
label_grid[width, ratio, row, col] = True
|
label_grid[width, ratio, row, col] = True
|
||||||
break
|
break
|
||||||
return label_grid
|
return label_grid
|
||||||
|
|||||||
Reference in New Issue
Block a user