nerfstudio icon indicating copy to clipboard operation
nerfstudio copied to clipboard

How to reload training results in web page?

Open kamen007 opened this issue 2 years ago • 1 comments

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.

kamen007 avatar Nov 14 '22 10:11 kamen007

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:

image

This indicates the model is not training. Hope this helps!

Claudio9701 avatar Nov 16 '22 12:11 Claudio9701

I found it. thanks a lot

kamen007 avatar Nov 17 '22 02:11 kamen007