不能将250670大小的阵列重塑为形状(7162,7,2)

发布于 2025-01-24 11:53:04 字数 202 浏览 0 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何处潇湘 2025-01-31 11:53:04

新形状(7162 * 7 * 2 = 100268)与原始形状(250670)不兼容。

250670 = 7162 * 7 * 5

因此,您可以尝试:

X_train=X_train.reshape((len(X_train), 7, 5))

或者您可以将一个尺寸之一设置为-1:

X_train=X_train.reshape((len(X_train), 7, -1)

它将给出与以前相同的结果。

检查文档在这里

The new shape(7162 * 7 * 2 =100268) is not compatible with the original shape(250670).

250670 = 7162 * 7 * 5

So, you can try :

X_train=X_train.reshape((len(X_train), 7, 5))

Or you can set one of the dimention to -1 :

X_train=X_train.reshape((len(X_train), 7, -1)

it will give the same result as before.

Check the documentation here for more

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文