updates
This commit is contained in:
parent
0dd0fa7938
commit
fcdbd3ee35
|
@ -449,8 +449,9 @@ def build_targets(model, targets):
|
||||||
# Class
|
# Class
|
||||||
tcls.append(c)
|
tcls.append(c)
|
||||||
if c.shape[0]: # if any targets
|
if c.shape[0]: # if any targets
|
||||||
assert c.max() <= model.nc, 'Model accepts %g classes labeled from 0-%g, however you supplied a label %g. \
|
assert c.max() < model.nc, 'Model accepts %g classes labeled from 0-%g, however you labelled a class %g. ' \
|
||||||
See https://github.com/ultralytics/yolov3/wiki/Train-Custom-Data' % (model.nc, model.nc - 1, c.max())
|
'See https://github.com/ultralytics/yolov3/wiki/Train-Custom-Data' % (
|
||||||
|
model.nc, model.nc - 1, c.max())
|
||||||
|
|
||||||
return tcls, tbox, indices, av
|
return tcls, tbox, indices, av
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue