ValueError: cannot reshape array of size 4385 into shape (877,5,5)

博客展示了使用Python进行神经网络数据处理的代码,包括读取CSV文件、划分训练集和测试集、数据重塑等操作。但在数据重塑时出现报错,提示无法将指定大小的数组重塑为目标形状。

from pandas import read_csv
from sklearn.model_selection import train_test_split
dataset = read_csv(‘data.csv’)
values = dataset.values.astype(‘float32’)

x = values[:, 0:5]
y = values[:, 0:5]

x_train, x_test, y_train, y_test = train_test_split(x, y, test_size=0.2)

x_train = x_train.reshape((x_train.shape[0], 5, x_train.shape[1]))
x_test = x_test.reshape((x_test.shape[0], 5, x_test.shape[1]))
print(x_train.shape, y_train.shape, x_test.shape, y_test.shape)

报错: x_train = x_train.reshape((x_train.shape[0], 5, x_train.shape[1]))
ValueError: cannot reshape array of size 4385 into shape (877,5,5)

评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值