Traceback (most recent call last): File "F:\yolov7-main\train.py", line 616, in <module> train(hyp, opt, device, tb_writer) File "F:\yolov7-main\train.py", line 249, in train mlc = np.concatenate(dataset.labels, 0)[:, 0].max() # max label class File "F:\ANACONDA3\envs\yolov7\lib\site-packages\numpy\core\_methods.py", line 40, in _amax return umr_maximum(a, axis, None, out, keepdims, initial, where) ValueError: zero-size array to reduction operation maximum which has no identity
时间: 2023-11-29 17:04:41 浏览: 114
linux 下 pip3 报错“ File “/usr/bin/pip3”, line 9, in from pip import mainImportError: canno”处理
5星 · 资源好评率100%
这个错误是由于你尝试对一个空的数组执行 max 操作引起的。具体来说,你在执行以下代码时遇到了这个错误:
```python
mlc = np.concatenate(dataset.labels, 0)[:, 0].max() # max label class
```
这可能是由于数据集中没有标签数据,或者标签数据格式不正确导致的。你需要检查数据集中的标签数据是否正确,并确保在使用时不是空的。
阅读全文