Skip to content

Commit

Permalink
fix batch norm warp
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Lai authored and Eric Lai committed Feb 19, 2021
1 parent d0b2bc5 commit c998330
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tensorlayer/app/human_pose_estimation/LCN.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,8 @@ def batch_normalization_warp(y):
_, output_size = y.get_shape()
output_size = int(output_size)
out_F = int(output_size / IN_JOINTS)

y = Reshape([-1, IN_JOINTS, out_F])(y)
y = BatchNorm(act='lrelu')(y)
y = BatchNorm(act='lrelu', epsilon=1e-3)(y)
y = Reshape([-1, output_size])(y)
return y

Expand Down

0 comments on commit c998330

Please sign in to comment.