Skip to content

Commit 2d96739

Browse files
committed
yapf
1 parent 022e8c2 commit 2d96739

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

  • tensorlayer/app/human_pose_estimation

tensorlayer/app/human_pose_estimation/LCN.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -221,10 +221,10 @@ def cgcnn_train():
221221

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

226226
# === End linear model ===
227-
output = End_layer()([input_layer,output])
227+
output = End_layer()([input_layer, output])
228228

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

@@ -329,4 +329,4 @@ def CGCNN(pretrained=True):
329329
restore_params(network, model_path='model/model.npz')
330330
else:
331331
network = cgcnn_train()
332-
return network
332+
return network

0 commit comments

Comments
 (0)