From efea7b683d5011f290ab35b7c48c5365c6da7db7 Mon Sep 17 00:00:00 2001 From: Guspan Tanadi <36249910+guspan-tanadi@users.noreply.github.com> Date: Tue, 3 Oct 2023 09:44:38 +0700 Subject: [PATCH] docs: potential bit misspell help argument TriPlane opt --- TriPlane/opt.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/TriPlane/opt.py b/TriPlane/opt.py index a4f3e6d..c8dbf63 100755 --- a/TriPlane/opt.py +++ b/TriPlane/opt.py @@ -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') @@ -117,4 +117,4 @@ def config_parser(cmd=None): if cmd is not None: return parser.parse_args(cmd) else: - return parser.parse_args() \ No newline at end of file + return parser.parse_args()