Skip to content

Commit

Permalink
docs: potential bit misspell help argument TriPlane opt
Browse files Browse the repository at this point in the history
  • Loading branch information
guspan-tanadi authored Oct 3, 2023
1 parent d9ea592 commit efea7b6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions TriPlane/opt.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ def config_parser(cmd=None):
parser.add_argument("--lr_decay_iters", type=int, default=-1,
help = 'number of iterations the lr will decay to the target ratio; -1 will set it to n_iters')
parser.add_argument("--lr_decay_target_ratio", type=float, default=0.1,
help='the target decay ratio; after decay_iters inital lr decays to lr*ratio')
help='the target decay ratio; after decay_iters initial lr decays to lr*ratio')
parser.add_argument("--lr_upsample_reset", type=int, default=1,
help='reset lr to inital after upsampling')
help='reset lr to initial after upsampling')

# loss
parser.add_argument("--L1_weight_inital", type=float, default=0.0,
parser.add_argument("--L1_weight_initial", type=float, default=0.0,
help='loss weight')
parser.add_argument("--L1_weight_rest", type=float, default=0,
help='loss weight')
Expand Down Expand Up @@ -117,4 +117,4 @@ def config_parser(cmd=None):
if cmd is not None:
return parser.parse_args(cmd)
else:
return parser.parse_args()
return parser.parse_args()

0 comments on commit efea7b6

Please sign in to comment.