Keras LSTM的参数input_shape, units等的理解

以前一直对LSTM的参数理解有误, 特别是units参数, 特此更正.网络 input = Input(shape=(100,), dtype='float32', name='main_input') lstm1 = Bidirectional(LSTM(100, return_sequences=True))(input) dropout1 = Dropout(0.2)(lstm1) lstm
相关文章
相关标签/搜索