mirror of
https://github.com/gosticks/body-pose-animation.git
synced 2025-10-16 11:45:42 +00:00
fix: remove orientation optimizer from pose
This commit is contained in:
parent
b18e54c397
commit
37aa619337
@ -85,7 +85,8 @@ def train_pose(
|
||||
pose_layer = BodyPose(model, dtype=dtype, device=device,
|
||||
useBodyMeanAngles=False).to(device=device, dtype=dtype)
|
||||
|
||||
parameters = [model.global_orient, pose_layer.body_pose]
|
||||
# [model.global_orient, pose_layer.body_pose]
|
||||
parameters = [pose_layer.body_pose] # list(model.parameters())
|
||||
|
||||
# setup all loss layers
|
||||
for l in extra_loss_layers:
|
||||
|
||||
Loading…
Reference in New Issue
Block a user