检查目标时出错:预期density_2具有2维,但数组的形状为(1、1226、2) [英] Error when checking target: expected dense_2 to have 2 dimensions, but got array with shape (1, 1226, 2)

查看:124
本文介绍了检查目标时出错:预期density_2具有2维,但数组的形状为(1、1226、2)的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

这是我要运行的代码:

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]]

推荐答案

似乎您正在执行二进制分类.因此,有几件事需要修复:

It seems you are doing binary classification. Therefore, there are a few things that need to be fixed:

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

  1. The y_train should consists of zeros and ones. The following would convert all the -1 labels to zeros:

y_train = (y_train == 1).astype('float32')

  • 将标签重塑为(n_samples, 1)的形状:

  • Reshape the labels to have a shape of (n_samples, 1):

    y_train = y_train.reshape(-1, 1)
    

  • 使用'sigmoid'作为最后一层的激活:

  • Use 'sigmoid' as the activation of last layer:

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

  • 这篇关于检查目标时出错:预期density_2具有2维,但数组的形状为(1、1226、2)的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

    查看全文
    相关文章
    登录 关闭
    扫码关注1秒登录
    发送“验证码”获取 | 15天全站免登陆