Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update train_options.py #120

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions utils/train_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ def __init__(self):
train.add_argument('--keypoint_loss_weight', default=5., type=float, help='Weight of 2D and 3D keypoint loss')
train.add_argument('--pose_loss_weight', default=1., type=float, help='Weight of SMPL pose loss')
train.add_argument('--beta_loss_weight', default=0.001, type=float, help='Weight of SMPL betas loss')
train.add_argument('--openpose_train_weight', default=0., help='Weight for OpenPose keypoints during training')
train.add_argument('--gt_train_weight', default=1., help='Weight for GT keypoints during training')
train.add_argument('--openpose_train_weight', default=0., type=float, help='Weight for OpenPose keypoints during training')
train.add_argument('--gt_train_weight', default=1., type=float, help='Weight for GT keypoints during training')
train.add_argument('--run_smplify', default=False, action='store_true', help='Run SMPLify during training')
train.add_argument('--smplify_threshold', type=float, default=100., help='Threshold for ignoring SMPLify fits during training')
train.add_argument('--num_smplify_iters', default=100, type=int, help='Number of SMPLify iterations')
Expand Down