Skip to content

Commit cec96f0

Browse files
added dropout back
1 parent 6407677 commit cec96f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -399,7 +399,7 @@ def Deeplabv3(weights='pascal_voc', input_tensor=None, input_shape=(512, 512, 3)
399399
use_bias=False, name='concat_projection')(x)
400400
x = BatchNormalization(name='concat_projection_BN', epsilon=1e-5)(x)
401401
x = Activation('elu')(x)
402-
# x = Dropout(0.1)(x)
402+
x = Dropout(0.1)(x)
403403
# DeepLab v.3+ decoder
404404

405405
if backbone == 'xception':

0 commit comments

Comments
 (0)