Parcourir la source

remove dropout from Conv3D layer

Jérôme BUISINE il y a 3 ans
Parent
commit
f3912184f8
1 fichiers modifiés avec 0 ajouts et 2 suppressions
  1. 0 2
      train_lstm_weighted.py

+ 0 - 2
train_lstm_weighted.py

@@ -117,8 +117,6 @@ def create_model(_input_shape):
 
     model.add(Conv3D(filters=20, kernel_size=(3, 3, 3),
                 activation='sigmoid',
-                dropout=0.4,
-                recurrent_dropout=0.4,
                 padding='same', data_format='channels_last'))
     model.add(Dropout(0.4))