WU-CVGL / BAD-Gaussians

[ECCV 2024] "BAD-Gaussians: Bundle Adjusted Deblur Gaussian Splatting". ⚡Train a scene from real-world blurry images in minutes!
https://lingzhezhao.github.io/BAD-Gaussians/
Apache License 2.0
137 stars 4 forks source link

Error: --pipeline.model.rasterize_mode "classic" #12

Closed chensh1127 closed 2 months ago

chensh1127 commented 2 months ago

Hey , My code is : ns-train bad-gaussians --data ./outputdir/coser2 --vis viewer+tensorboard nerfstudio-data --eval_mode "all" --pipeline.model.rasterize_mode "classic"

the treminal is: image

LingzheZhao commented 2 months ago

Hi, the arguments after nerfstudio-data will be passed to the NerfstudioDataParser, thus we must put --pipeline.model.rasterize_mode "classic" before it:

ns-train bad-gaussians \
    --data ./outputdir/coser2 \
    --pipeline.model.rasterize_mode "classic" \
    --vis viewer+tensorboard \
    nerfstudio-data \
    --eval_mode "all"
chensh1127 commented 2 months ago

it works , thank you