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

前端 未结 3 1868
不知归路
不知归路 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:30

    I think you need to add axis=1 to concatenate, Try:

    x = keras.layers.concatenate([book_out, char_out], axis=1)
    
    0 讨论(0)
  • 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)
    
    0 讨论(0)
  • 2021-02-18 15:51

    I know, documentation can be confusing, but Concatenate actually only requires "axis" as parameter, while you passed the layers. The layers need to be passed as argument to the result of it as follow:

    Line to modify:

    x = keras.layers.concatenate([book_out, char_out])

    How it should be:

    x = keras.layers.Concatenate()([book_out, char_out])

    0 讨论(0)
提交回复
热议问题