parser.add_argument("--scene","--training_data",default="",help="The scene to load. Can be the scene's name or a full path to the training data.")
parser.add_argument("--scene","--training_data",default="",help="The scene to load. Can be the scene's name or a full path to the training data.")
parser.add_argument("--mode",default="",const="nerf",nargs="?",choices=["nerf","sdf","image","volume"],help="Mode can be 'nerf', 'sdf', or 'image' or 'volume'. Inferred from the scene if unspecified.")
parser.add_argument("--mode",default="",const="nerf",nargs="?",choices=["nerf","sdf","image","volume"],help="Mode can be 'nerf', 'sdf', 'image' or 'volume'. Inferred from the scene if unspecified.")
parser.add_argument("--network",default="",help="Path to the network config. Uses the scene's default if unspecified.")
parser.add_argument("--network",default="",help="Path to the network config. Uses the scene's default if unspecified.")
parser.add_argument("--load_snapshot",default="",help="Load this snapshot before training. recommended extension: .msgpack")
parser.add_argument("--load_snapshot",default="",help="Load this snapshot before training. recommended extension: .msgpack")
...
@@ -37,7 +36,8 @@ def parse_args():
...
@@ -37,7 +36,8 @@ def parse_args():
parser.add_argument("--nerf_compatibility",action="store_true",help="Matches parameters with original NeRF. Can cause slowness and worse results on some scenes.")
parser.add_argument("--nerf_compatibility",action="store_true",help="Matches parameters with original NeRF. Can cause slowness and worse results on some scenes.")
parser.add_argument("--test_transforms",default="",help="Path to a nerf style transforms json from which we will compute PSNR.")
parser.add_argument("--test_transforms",default="",help="Path to a nerf style transforms json from which we will compute PSNR.")
parser.add_argument("--near_distance",default=-1,type=float,help="set the distance from the camera at which training rays start for nerf. <0 means use ngp default")
parser.add_argument("--near_distance",default=-1,type=float,help="Set the distance from the camera at which training rays start for nerf. <0 means use ngp default")
parser.add_argument("--exposure",default=0.0,type=float,help="Controls the brightness of the image. Positive numbers increase brightness, negative numbers decrease it.")
parser.add_argument("--screenshot_transforms",default="",help="Path to a nerf style transforms.json from which to save screenshots.")
parser.add_argument("--screenshot_transforms",default="",help="Path to a nerf style transforms.json from which to save screenshots.")
parser.add_argument("--screenshot_frames",nargs="*",help="Which frame(s) to take screenshots of.")
parser.add_argument("--screenshot_frames",nargs="*",help="Which frame(s) to take screenshots of.")