You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
在开始训练后出现了一个问题,在输出损失的时候提示
File ".\train.py", line 402, in
iter_id, losses[0], losses[0], losses[1], losses[2], losses[3], eta)
IndexError: list index out of range
查看losses的形状时,发现只是一个长度为2的数组
而yolo_loss输出的是长度为3的数组
不知道哪里出了问题,大佬可以看一下吗
(之前尝试过改成all_loss = losses[0]+losses[1]+losses[2]还是不行)
The text was updated successfully, but these errors were encountered:
在开始训练后出现了一个问题,在输出损失的时候提示
File ".\train.py", line 402, in
iter_id, losses[0], losses[0], losses[1], losses[2], losses[3], eta)
IndexError: list index out of range
查看losses的形状时,发现只是一个长度为2的数组
而yolo_loss输出的是长度为3的数组
不知道哪里出了问题,大佬可以看一下吗
(之前尝试过改成all_loss = losses[0]+losses[1]+losses[2]还是不行)
The text was updated successfully, but these errors were encountered: