Closed ygtxr1997 closed 10 months ago
Hello @ygtxr1997,
In theory, this should not change the results.
Actually, a lot of people use the data_device='cpu'
trick in the original Gaussian Splatting implementation to make the code work with much larger datasets.
I suppose it slows down the optimization process, but I have not tried it myself. I should definitely investigate the speed performance for this.
But don't worry, in theory, it should be ok!
And thank you for your message; I should add it to the README.md
file, as it could help people working with larger datasets.
On a large scene, with >1200 images as input, I met OOM issue. And I made the following modifications:
sugar_scene/cameras.py
:sugar_trainers/coarse_sdf.py
andsugar_trainers/refine.py
:The OOM problem doesn't occur anymore and the training process is ok.
I'm not sure whether I did the right thing?