rezazad68 / BCDU-Net

BCDU-Net : Medical Image Segmentation
712 stars 264 forks source link

where is the Bi-direction conv LSTM...?? #15

Closed babbu3682 closed 4 years ago

babbu3682 commented 4 years ago

I already saw your code and your answer about other person's issue. " you can use the following code to include bi-directional ConvLSTM: LSTM_f = layers.ConvLSTM2D(filters = 128, kernel_size=(3, 3), padding='same', return_sequences = False, go_backwards = False, kernel_initializer = 'he_normal')(X) LSTM_b = layers.ConvLSTM2D(filters = 128, kernel_size=(3, 3), padding='same', return_sequences = False, go_backwards = True, kernel_initializer = 'he_normal')(X) Bi_rep = layers.Add()([LSTM_f, LSTM_b]) "

There is no Bi-direction convLSTM2d. so If i want to use bi-directional convlstm2d, Do I just typo that your code LSTM_f and LSTM_b ??