Skip to content

Commit dd5ae68

Browse files
committed
fix typo
1 parent c28db66 commit dd5ae68

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ cd data/deepslam_data && ln -s 7SCENES_DIR 7Scenes
2626
Notice that we additionally computed a pose averaging stats (pose_avg_stats.txt) and manually tuned world_setup.json in `data/7Scenes` to align the 7Scenes' coordinate system with NeRF's coordinate system. You could generate your own re-alignment to a new pose_avg_stats.txt using the `--save_pose_avg_stats` configuration.
2727

2828
- **Cambridge Landmarks**
29+
2930
You can download the Cambridge Landmarks dataset using this script [here](https://github.com/vislearn/dsacstar/blob/master/datasets/setup_cambridge.py). Please also put the pose_avg_stats.txt and world_setup.json to the `data/Cambridge/CAMBRIDGE_SCENES` like we provided in the source code.
3031

3132
## Training

script/models/nerfw.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ def create_nerf(args):
462462
ckpt = torch.load(ckpt_path)
463463

464464
start = ckpt['global_step']
465-
optimizer.load_state_dict(ckpt['optimizer_state_dict'])
465+
# optimizer.load_state_dict(ckpt['optimizer_state_dict'])
466466
# Load model
467467
model.load_state_dict(ckpt['network_fn_state_dict'])
468468

0 commit comments

Comments
 (0)