parser.add_argument("--save_snapshot",default="",help="Save this snapshot after training. recommended extension: .msgpack")
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("--screenshot_transforms",default="",help="Path to a nerf style transforms json from which to save a screenshot.")
parser.add_argument("--screenshot_frames",nargs="*",help="Which frame(s) to take a screenshot of")
parser.add_argument("--screenshot_dir",default="",help="which directory to output screenshots to")
parser.add_argument("--screenshot_w",type=int,default=0,help="screenshot res width")
parser.add_argument("--screenshot_h",type=int,default=0,help="screenshot res height")