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
相關文章
相關標籤/搜索