python - 检查目标 : expected dense_2 to have 2 dimensions, 但获得形状为 (1, 1226, 2) 的数组时出错

标签 python machine-learning keras time-series lstm

这是我尝试运行的代码:

y = Df[['label']]

y_train = np.column_stack((y_train['label']))

y_test = np.column_stack((y_test['label']))

data_dim = 18
timesteps = 1
num_classes = 2

model = Sequential()

model.add(LSTM(19, return_sequences=True,
               input_shape=(timesteps, data_dim)))  
model.add(LSTM(19, return_sequences=True))  
model.add(LSTM(19))  # return a single vector of dimension 30
model.add(Dense(1, activation='softmax'))

model.compile(loss='binary_crossentropy',
              optimizer='rmsprop',
              metrics=['accuracy'])

model.summary()

model.fit(X_train, y_train, batch_size = 400, epochs = 20, verbose = 

accuracy_train = accuracy_score(y_train, model.predict(X_train))
accuracy_test = accuracy_score(y_test, model.predict(X_test))
print('\nTrain Accuracy:{: .2f}%'.format(accuracy_train*100))
print('Test Accuracy:{: .2f}%'.format(accuracy_test*100))

我收到以下错误:

Error when checking target: expected dense_1 to have shape (1,) but got array with shape (1226,)

模型摘要:

_________________________________________________________________
Layer (type)                 Output Shape              Param #   
=================================================================
lstm_37 (LSTM)               (None, 1, 19)             2888      
_________________________________________________________________
lstm_38 (LSTM)               (None, 1, 19)             2964      
_________________________________________________________________
lstm_39 (LSTM)               (None, 19)                2964      
_________________________________________________________________
dense_13 (Dense)             (None, 1)                 20        
=================================================================
Total params: 8,836
Trainable params: 8,836
Non-trainable params: 0

X_train:

[[[-0.02444971  0.02444971  1.          1.          1.
    1.         -1.          2.          3.          4.
    3.          1.          0.          0.06938705 -0.04329106
    0.02458854  0.06025883  0.01439807]]]
[[[ 0.00733477  0.02033006 -1.          1.          1.
    1.         -1.          0.          1.          2.
    1.          0.          0.          0.03837079 -0.00829683
   -0.00734757  0.00985466 -0.04543226]]]

y_train:

[[ 1  1 -1 ...  1  1 -1]]

最佳答案

看来你正在做二元分类。因此,有一些问题需要修复:

  1. y_train 应由零和一组成。以下代码会将所有 -1 标签转换为零:

    y_train = (y_train == 1).astype('float32')
    
  2. 将标签 reshape 为 (n_samples, 1) 形状:

    y_train = y_train.reshape(-1, 1)
    
  3. 使用'sigmoid'作为最后一层的激活:

    model.add(Dense(1, activation='sigmoid'))
    

关于python - 检查目标 : expected dense_2 to have 2 dimensions, 但获得形状为 (1, 1226, 2) 的数组时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52908537/

相关文章:

python - 值错误: Input contains infinity or a value too large for dtype ('float64' )

python - Keras 层构建错误 : build() takes 1 Positional Argument but two were given

python - AppEngine - 写入限制为每秒 1 次

python - 以编程方式解析网页(使用登录名/ssl)

python - 使用nltk进行通用同义词和词性处理

python - 如何从不同大小的图像中提取相同大小的补丁并将它们与tensorflow数据集api一起批处理?

neural-network - 神经网络层的输出在哪些方面有用?

python - 如何获取 Keras 模型的可训练参数数量?

python - 可变幂舍入数字,精度为两位数

python - 已训练模型的超参数优化