dunbar12138 / DSNeRF

Code release for DS-NeRF (Depth-supervised Neural Radiance Fields)
https://www.cs.cmu.edu/~dsnerf/
MIT License
757 stars 128 forks source link

new experiment by kangle #96

Open tourbliu opened 1 year ago

tourbliu commented 1 year ago

I want to know which part of the experiment these parameters are used for

parser.add_argument("--N_iters", type=int, default=200000, help='number of iters') parser.add_argument("--alpha_model_path", type=str, default=None, help='predefined alpha model')

dunbar12138 commented 1 year ago

N_iters specifies the number of training iterations. alpha_model_path can load a pre-trained coarse NeRF model for importance sampling, which is mostly for diagnostic purposes.