AssertionError: runs\train\exp3\weights\last.pt training to 10 epochs is finished, nothing to resume. Start a new training without --resume, i.e. 'python train.py --weights runs\train\exp3\weights\last.pt'
时间: 2023-07-21 17:06:50 浏览: 232
scrcpy投屏 AssertionError: java.lang.reflect.InvocationTargetExcep
5星 · 资源好评率100%
这个错误是由于在训练模型时使用了 `--resume` 参数,但训练已经完成了10个epochs,不能继续恢复要解决这个,你需要启动一个的训练,而不使用 `--resume` 参数。你可以尝试运行以下命令来启动一个新的训练:
```
python train.py --weights runs\train\exp3\weights\last.pt
```
这将从之前的模型权重文件 `last.pt` 开始一个新的训练。
阅读全文