nerfstudio
nerfstudio copied to clipboard
How to reload training results in web page?
Hi,when I close my training tenminal, How to reload training results in web page? Now,the way I used is to retrain the data ,and it cost much time.
Hi, I found this flag in the help info for ns-train nerfacto command:
$ ns-train nerfacto -h
...
--viewer.no-start-train │
│ whether to immediately start training upon loading viewer if False, will just visualize dataset │
│ but you can toggle training in viewer (sets: start_train=False)
...
After training your model you can run the ns-train nerfacto command with this flag to visualize the scene without training the model. See the example bellow:
$ ns-train nerfacto --data {data-dir} --trainer.load_dir {output-dir}/nerfacto/{timestamp}/nerfstudio_models --viewer.no-start-train
In the viewer sidebar you should see the "Resume training" button as shown in the figure:
This indicates the model is not training. Hope this helps!
I found it. thanks a lot