We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0b2bc5 commit c998330Copy full SHA for c998330
1 file changed
tensorlayer/app/human_pose_estimation/LCN.py
@@ -166,9 +166,8 @@ def batch_normalization_warp(y):
166
_, output_size = y.get_shape()
167
output_size = int(output_size)
168
out_F = int(output_size / IN_JOINTS)
169
-
170
y = Reshape([-1, IN_JOINTS, out_F])(y)
171
- y = BatchNorm(act='lrelu')(y)
+ y = BatchNorm(act='lrelu', epsilon=1e-3)(y)
172
y = Reshape([-1, output_size])(y)
173
return y
174
0 commit comments