Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
nerfacc
Commits
630f2596
Commit
630f2596
authored
Sep 10, 2022
by
Ruilong Li
Browse files
random bkgd is useless
parent
6093da8f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
1 deletion
+2
-1
README.md
README.md
+1
-0
examples/trainval.py
examples/trainval.py
+1
-1
No files found.
README.md
View file @
630f2596
...
...
@@ -24,4 +24,5 @@ Tested with the default settings on the Lego test set.
1.
sample rays over all images per iteration (
`batch_over_images=True`
) is better:
`PSNR 33.31 -> 33.75`
.
2.
make use of scheduler (
`MultiStepLR(optimizer, milestones=[20000, 30000], gamma=0.1)`
) to adjust learning rate gives:
`PSNR 33.75 -> 34.40`
.
3.
increasing chunk size (
`chunk: 8192 -> 81920`
) during inference gives speedup:
`FPS 4.x -> 6.2`
4.
random bkgd color (
`color_bkgd_aug="random"`
) for the
`Lego`
scene actually hurts:
`PNSR 35.42 -> 34.38`
examples/trainval.py
View file @
630f2596
...
...
@@ -63,7 +63,7 @@ if __name__ == "__main__":
train_dataset
=
SubjectLoader
(
subject_id
=
"lego"
,
root_fp
=
"/home/ruilongli/data/nerf_synthetic/"
,
split
=
"train"
,
split
=
"train
val
"
,
num_rays
=
8192
,
)
# train_dataset.images = train_dataset.images.to(device)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment