Skip to content

Commit c5852a1

Browse files
authored
Update xception.py
1 parent 2d39447 commit c5852a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

xception.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ def xception_arg_scope(weight_decay=0.00001,
162162
# Set weight_decay for weights in conv2d and separable_conv2d layers.
163163
with slim.arg_scope([slim.conv2d, slim.separable_conv2d],
164164
weights_regularizer=slim.l2_regularizer(weight_decay),
165-
biases_regularizer=slim.l2_regularizer(weight_decay),
165+
biases_initializer=None,
166166
activation_fn=None):
167167

168168
# Set parameters for batch_norm. Note: Do not set activation function as it's preset to None already.

0 commit comments

Comments
 (0)