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 16:06:50 浏览: 67
Node.js API详解之 assert模块用法实例分析
这个错误是由于你执行了一个已经完成了10个epochs训练的模型进行恢复训练的操作。在这种情况下,你需要开始一个新的训练而不是恢复训练。你可以尝试执行以下命令来开始新的训练:
```
python train.py --weights runs\train\exp3\weights\last.pt
```
这将使用之前训练的模型权重作为初始参数开始一个新的训练。
阅读全文