Skip to content

Commit

Permalink
yapf
Browse files Browse the repository at this point in the history
  • Loading branch information
Eric Lai authored and Eric Lai committed Feb 7, 2021
1 parent 022e8c2 commit 2d96739
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tensorlayer/app/human_pose_estimation/LCN.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,10 +221,10 @@ def cgcnn_train():

# === Last layer ===
input_size4 = int(output.get_shape()[1])
output = Mask_layer(in_channels=input_size4, out_channels=OUT_JOINTS*3, name=["w4", "b4"])(output)
output = Mask_layer(in_channels=input_size4, out_channels=OUT_JOINTS * 3, name=["w4", "b4"])(output)

# === End linear model ===
output = End_layer()([input_layer,output])
output = End_layer()([input_layer, output])

network = Model(inputs=input_layer, outputs=output)

Expand Down Expand Up @@ -329,4 +329,4 @@ def CGCNN(pretrained=True):
restore_params(network, model_path='model/model.npz')
else:
network = cgcnn_train()
return network
return network

0 comments on commit 2d96739

Please sign in to comment.