I encounter some errors. Could you please guide me on how to resolve these errors? Also, is it possible that these errors are occurring because I haven't trained the model yet and the checkpoint is a place to save the trained model? thank you in advance.
/home/xxx/anaconda3/envs/nerf_factory/bin/python /home/xxx/Documents/tools/nerf-factory/run.py --ginc configs/nerf/blender.gin --scene chair --ginb run.run_train=False
Global seed set to 220901
GPU available: True (cuda), used: True
TPU available: False, using: 0 TPU cores
IPU available: False, using: 0 IPUs
HPU available: False, using: 0 HPUs
Restoring states from the checkpoint path at logs/nerf_blender_chair_220901/best.ckpt
Traceback (most recent call last):
File "/home/xxx/Documents/tools/nerf-factory/run.py", line 231, in <module>
run(
File "/home/xxx/anaconda3/envs/nerf_factory/lib/python3.8/site-packages/gin/config.py", line 1605, in gin_wrapper
utils.augment_exception_message_and_reraise(e, err_str)
File "/home/xxx/anaconda3/envs/nerf_factory/lib/python3.8/site-packages/gin/utils.py", line 41, in augment_exception_message_and_reraise
raise proxy.with_traceback(exception.__traceback__) from None
File "/home/xxx/anaconda3/envs/nerf_factory/lib/python3.8/site-packages/gin/config.py", line 1582, in gin_wrapper
return fn(*new_args, **new_kwargs)
File "/home/xxx/Documents/tools/nerf-factory/run.py", line 183, in run
trainer.test(model, data_module, ckpt_path=ckpt_path)
File "/home/xxx/anaconda3/envs/nerf_factory/lib/python3.8/site-packages/pytorch_lightning/trainer/trainer.py", line 794, in test
return call._call_and_handle_interrupt(
File "/home/xxx/anaconda3/envs/nerf_factory/lib/python3.8/site-packages/pytorch_lightning/trainer/call.py", line 38, in _call_and_handle_interrupt
return trainer_fn(*args, **kwargs)
File "/home/xxx/anaconda3/envs/nerf_factory/lib/python3.8/site-packages/pytorch_lightning/trainer/trainer.py", line 842, in _test_impl
results = self._run(model, ckpt_path=self.ckpt_path)
File "/home/xxx/anaconda3/envs/nerf_factory/lib/python3.8/site-packages/pytorch_lightning/trainer/trainer.py", line 1056, in _run
self._restore_modules_and_callbacks(ckpt_path)
File "/home/xxx/anaconda3/envs/nerf_factory/lib/python3.8/site-packages/pytorch_lightning/trainer/trainer.py", line 998, in _restore_modules_and_callbacks
self._checkpoint_connector.resume_start(checkpoint_path)
File "/home/xxx/anaconda3/envs/nerf_factory/lib/python3.8/site-packages/pytorch_lightning/trainer/connectors/checkpoint_connector.py", line 90, in resume_start
loaded_checkpoint = self.trainer.strategy.load_checkpoint(checkpoint_path)
File "/home/xxx/anaconda3/envs/nerf_factory/lib/python3.8/site-packages/pytorch_lightning/strategies/strategy.py", line 359, in load_checkpoint
return self.checkpoint_io.load_checkpoint(checkpoint_path)
File "/home/xxx/anaconda3/envs/nerf_factory/lib/python3.8/site-packages/lightning_fabric/plugins/io/torch_io.py", line 84, in load_checkpoint
raise FileNotFoundError(f"Checkpoint at {path} not found. Aborting training.")
FileNotFoundError: Checkpoint at logs/nerf_blender_chair_220901/best.ckpt not found. Aborting training.
In call to configurable 'run' (<function run at 0x7f9d3edd0310>)
Hi, first thanks for your work. I am new to deep learning and have just started to learn about NERF. When I run the command
I encounter some errors. Could you please guide me on how to resolve these errors? Also, is it possible that these errors are occurring because I haven't trained the model yet and the checkpoint is a place to save the trained model? thank you in advance.