不能将250670大小的阵列重塑为形状(7162,7,2)
x_train = x_train.Reshape(((len(x_train),7,2)))
x_test = x_test.reshape((len(x_test),7,2),7,2)
valueerror:coss重塑250670大小的阵列形状(7162,7,2) 我们如何找到重塑所需的尺寸值?
X_train=X_train.reshape((len(X_train), 7, 2))
X_test=X_test.reshape((len(X_test), 7, 2)
ValueError:cannot reshape array of size 250670 into shape (7162,7,2)
how can we find required dimension value for reshaping?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
新形状(7162 * 7 * 2 = 100268)与原始形状(250670)不兼容。
因此,您可以尝试:
或者您可以将一个尺寸之一设置为-1:
它将给出与以前相同的结果。
检查文档在这里
The new shape(7162 * 7 * 2 =100268) is not compatible with the original shape(250670).
So, you can try :
Or you can set one of the dimention to -1 :
it will give the same result as before.
Check the documentation here for more