Keras模型LSTM预测2个特征

问题描述 投票:3回答:1

我试图预测2个功能。这就是我的模型的样子:

定义模型

def my_model():
    input_x = Input(batch_shape=(batch_size, look_back, x_train.shape[2]), name='input')
    drop = Dropout(0.5)

    lstm_1 = LSTM(100, return_sequences=True, batch_input_shape=(batch_size, look_back, x_train.shape[2]), name='3dLSTM', stateful=True)(input_x)
    lstm_1_drop = drop(lstm_1)
    lstm_2 = LSTM(100, batch_input_shape=(batch_size, look_back, x_train.shape[2]), name='2dLSTM', stateful=True)(lstm_1_drop)
    lstm_2_drop = drop(lstm_2)

    y1 = Dense(1, activation='relu', name='op1')(lstm_2_drop)
    y2 = Dense(1, activation='relu', name='op2')(lstm_2_drop)

    model = Model(inputs=input_x, outputs=[y1,y2])
    optimizer = Adam(lr=0.001, decay=0.00001)
    model.compile(loss='mse', optimizer=optimizer,metrics=['mse'])
    model.summary()
    return model

model = my_model()

for j in range(50):
    start = time.time()
    history = model.fit(x_train, [y_11_train,y_22_train], epochs=1, batch_size=batch_size, verbose=0, shuffle=False)
    model.reset_states()
    print("Epoch",j, time.time()-start,"s")

p = model.predict(x_test, batch_size=batch_size)

我的数据集有9个功能:

x_train (31251, 6, 9)
y_11_train (31251,)
y_22_train (31251,)
x_test (13399, 6, 9)
y_11_test (13399,)
y_22_test (13399,)

我试图预测我的数据集的第一个(y_11)和第二个(y_22)特征。但我正在预测第一个特征而不是第二个特征。

有关如何获得预测而不是一个预测的任何帮助?

python tensorflow keras lstm prediction
1个回答
2
投票

首先,您应该删除同一事物的多个输入:

(batch_size,look_back,x_train.shape [2])

另外,尝试在模型中连接输出,如下所示:

def my_model():
    from keras.layers import concatenate

    lstm_1 = LSTM(100, return_sequences=True, batch_input_shape=(batch_size, look_back, x_train.shape[2]), name='3dLSTM', stateful=True)
    lstm_1_drop = drop(lstm_1)
    lstm_2 = LSTM(100, name='2dLSTM', stateful=True)(lstm_1_drop)
    lstm_2_drop = drop(lstm_2)

    y1 = Dense(1, activation='linear', name='op1')(lstm_2_drop)
    y2 = Dense(1, activation='linear', name='op2')(lstm_2_drop)

    y= concatenate([y1,y2])

    model = Model(inputs=input_x, outputs=y)
    optimizer = Adam(lr=0.001, decay=0.00001)
    model.compile(loss='mse', optimizer=optimizer,metrics=['mse'])
    model.summary()
    return model

编辑我觉得你应该这样:

y_11_train = y_11_train.reshape(y_11_train.shape[0],1)
y_22_train = y_22_train.reshape(y_22_train.shape[0],1)
model = my_model()
model.fit(x_train,np.concatenate((y_11_train,y_22_train),axis=1),...)
© www.soinside.com 2019 - 2024. All rights reserved.