如何将输入/输出数据解析为使用keras制作的模型



我目前正在使用keras来训练回归网络。

网络是建立的,但我不确定我应该如何传递我的输入和输出数据到模型。

输入和输出都存储为numpy数组列表。输入列表中的numpy数组的形状为(400行,y列)。输出中的numpy数组的形状为(y行,13列)

网络输入维数为400,输出维数为13。

根据文档。

fit(self, x, y, batch_size=32, nb_epoch=10, verbose=1, callbacks=[], validation_split=0.0, validation_data=None, shuffle=True, class_weight=None, sample_weight=None)

x:输入数据,如Numpy数组或Numpy数组列表(如果模型有多个输入)。

y:标签,作为Numpy数组。

在这种情况下,

y不是标签,而是原始数据。但是如何确保模型。知道它应该把每一列作为输入,每一行作为输出,对列表中的所有条目都这样做…

只是解析数据而不做任何事情给我这个错误。

Traceback (most recent call last):
  File "tensorflow_datapreprocess_mfcc_extraction_rnn.py", line 167, in <module>
    model.fit(train_set_data,train_set_output,verbose=1)
  File "/usr/local/lib/python2.7/dist-packages/keras/models.py", line 620, in fit
    sample_weight=sample_weight)
  File "/usr/local/lib/python2.7/dist-packages/keras/engine/training.py", line 1034, in fit
    batch_size=batch_size)
  File "/usr/local/lib/python2.7/dist-packages/keras/engine/training.py", line 961, in _standardize_user_data
    exception_prefix='model input')
  File "/usr/local/lib/python2.7/dist-packages/keras/engine/training.py", line 51, in standardize_input_data
    '...')
Exception: Error when checking model input: the list of Numpy arrays that you are passing to your model is not the size the model expected. Expected to see 1 arrays but instead got the following list of 270 arrays: [array([[ -1.52587891e-04,   3.05175781e-05,  -1.52587891e-04,
         -5.18798828e-04,   3.05175781e-05,  -3.96728516e-04,
          1.52587891e-04,   3.35693359e-04,  -9.15527344e-05,
          3.3...
代码:

print "Training!"
model = Sequential()
model.add(Dense(output_dim=13, input_dim=400, init="normal"))
model.add(Activation("relu"))
model.compile(loss='mean_squared_error', optimizer='sgd')
model.fit(train_set_data,train_set_output,verbose=1)

尝试通过转换numpy数组来重塑您的训练输入,即

x = np.transpose(x)

那么你的训练输入应该是(number_samples, number_features)的形状,这是需要的输入格式。您的训练输出已经是正确的格式。

相关内容

  • 没有找到相关文章

最新更新