成功解决ValueError: setting an array element with a sequence.
成功解决ValueError: setting an array element with a sequence.
解决问题
ValueError: setting an array element with a sequence.
解决方法
值错误:用序列设置数组元素。
输出值查看,发现为,即输出嵌套列表内第一个列表即可!
将
plt.plot(x,test_predict)
改为
plt.plot(x,test_predict[0])
哈哈,大功告成!
赞 (0)