Layer called with an input that isn't a symbolic tensor keras

前端 未结 3 1869
不知归路
不知归路 2021-02-18 14:48

I\'m trying to pass the output of one layer into two different layers and then join them back together. However, I\'m being stopped by this error which is telling me that my inp

3条回答
  •  不知归路
    2021-02-18 15:50

    It looks like you're not actually giving an input to your LSTM layer. You specify the number of recurrent neurons and the shape of the input, but do not provide an input. Try:

    lstm_out = LSTM(128, input_shape=(maxlen, len(chars)))(net_input)
    

提交回复
热议问题