Skip to content

Commit

Permalink
Update mipnerf defaults (#1092)
Browse files Browse the repository at this point in the history
update mipnerf defaults
  • Loading branch information
ethanweber authored Dec 5, 2022
1 parent 13fca70 commit 2a62d8a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nerfstudio/configs/method_configs.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,13 @@
method_configs["mipnerf"] = Config(
method_name="mipnerf",
pipeline=VanillaPipelineConfig(
datamanager=VanillaDataManagerConfig(dataparser=BlenderDataParserConfig(), train_num_rays_per_batch=8192),
datamanager=VanillaDataManagerConfig(dataparser=NerfstudioDataParserConfig(), train_num_rays_per_batch=1024),
model=VanillaModelConfig(
_target=MipNerfModel,
loss_coefficients={"rgb_loss_coarse": 0.1, "rgb_loss_fine": 1.0},
num_coarse_samples=128,
num_importance_samples=128,
eval_num_rays_per_chunk=8192,
eval_num_rays_per_chunk=1024,
),
),
optimizers={
Expand Down

0 comments on commit 2a62d8a

Please sign in to comment.