gpt4 book ai didi

python - model.fit 上的维数错误

转载 作者:太空狗 更新时间:2023-10-29 20:49:26 25 4
gpt4 key购买 nike

我正在尝试运行这个 SimpleRNN:

model.add(SimpleRNN(init='uniform',output_dim=1,input_dim=len(pred_frame.columns)))
model.compile(loss="mse", optimizer="sgd")
model.fit(X=predictor_train, y=target_train, batch_size=len(pred_frame.index),show_accuracy=True)

错误出在 model.fit 上,如下所示:

File "/Users/file.py", line 1496, in Pred
model.fit(X=predictor_train, y=target_train, batch_size=len(pred_frame.index),show_accuracy=True)
File "/Library/Python/2.7/site-packages/keras/models.py", line 581, in fit
shuffle=shuffle, metrics=metrics)
File "/Library/Python/2.7/site-packages/keras/models.py", line 239, in _fit
outs = f(ins_batch)
File "/Library/Python/2.7/site-packages/keras/backend/theano_backend.py", line 365, in __call__
return self.function(*inputs)
File "/Library/Python/2.7/site-packages/theano/compile/function_module.py", line 513, in __call__
allow_downcast=s.allow_downcast)
File "/Library/Python/2.7/site-packages/theano/tensor/type.py", line 169, in filter
data.shape))
TypeError: ('Bad input argument to theano function with name "/Library/Python/2.7/site-packages/keras/backend/theano_backend.py:362" at index 0(0-based)', 'Wrong number of dimensions: expected 3, got 2 with shape (88, 88).')

错误告诉我它的维度数错误,它应该是 3 而它只有 2。它指的是什么维度?

最佳答案

您正在尝试运行 RNN。这意味着您要在计算中包括以前的时间步长。为此,您必须在将数据提供给 SimpleRNN 层之前对其进行预处理。

为简单起见,我们假设您有 8 个样本,每个样本有 4 个特征,而不是每个样本有 88 个特征。现在,当使用 RNN 时,您必须决定反向传播的最大值(即计算中包含的先前时间步数)。在这种情况下,您可以选择最多包含 2 个先前的时间步长。因此,为了计算 RNN 的权重,您必须在每个时间步提供当前时间步的输入(具有 4 个特征)和前 2 个时间步的输入(每个时间步具有 4 个特征)。就像在这个可视化中一样:

sequence    sample0  sample1  sample2  sample3  sample4  sample5  sample6 sample7       
0 |-----------------------|
1 |-----------------------|
2 |-----------------------|
3 |-----------------------|
4 |----------------------|
5 |----------------------|

因此,不是将 (nb_samples, nb_features) 矩阵作为 SimpleRNN 的输入,而是必须为其提供 (nb_sequences, nb_timesteps, nb_features) 形状的输入。在此示例中,这意味着不是提供 (8x4) 输入,而是提供 (5x3x4) 输入。

keras Embedding层可能会完成这项工作,但在这种情况下,您还可以为其编写一个简短的代码:

input = np.random.rand(8,4)
nb_timesteps = 3 # 2 (previous) + 1 (current)
nb_sequences = input.shape[0] - nb_timesteps #8-3=5

input_3D = np.array([input[i:i+nb_timesteps] for i in range(nb_sequences)])

关于python - model.fit 上的维数错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36136562/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com