Explorar el Código

remove dropout from Conv3D layer

Jérôme BUISINE hace 4 años
padre
commit
f3912184f8
Se han modificado 1 ficheros con 0 adiciones y 2 borrados
  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))