We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 022e8c2 commit 2d96739Copy full SHA for 2d96739
1 file changed
tensorlayer/app/human_pose_estimation/LCN.py
@@ -221,10 +221,10 @@ def cgcnn_train():
221
222
# === Last layer ===
223
input_size4 = int(output.get_shape()[1])
224
- 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)
225
226
# === End linear model ===
227
- output = End_layer()([input_layer,output])
+ output = End_layer()([input_layer, output])
228
229
network = Model(inputs=input_layer, outputs=output)
230
@@ -329,4 +329,4 @@ def CGCNN(pretrained=True):
329
restore_params(network, model_path='model/model.npz')
330
else:
331
network = cgcnn_train()
332
- return network
+ return network
0 commit comments