IndexError: index 11 is out of bounds for dimension 0 with size 11

成功解决
IndexError: index 11 is out of bounds for dimension 0 with size 11

报错原因IndexError: index 11 is out of bounds for dimension 0 with size 11_第1张图片

创建的数组是大小(11,2),横坐标索引值是0-10、纵坐标索引值是0-1。
而在循环语句中索引的最后一个值是11,超出了数组索引范围。

解决方法

将数组维度扩充,或将循环减少。
IndexError: index 11 is out of bounds for dimension 0 with size 11_第2张图片
成功解决,不报错了!

你可能感兴趣的:(python项目,#记录报错,python,pytorch,深度学习,机器学习)