We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I set up by following readme instruction from the beginning (I installed gsplat using pip install gsplat), but when I ran
pip install gsplat
cd examples bash benchmarks/basic.sh
I got below error.
ModuleNotFoundError: No module named 'gsplat.optimizers'
How can I solve this?
The text was updated successfully, but these errors were encountered:
I see the same thing running simple_trainer
python3 simple_trainer.py default --data_dir ~/splat --data_factor 4 --result_dir --result_dir ~/output Traceback (most recent call last): File "/home/heety/gsplat/examples/simple_trainer.py", line 43, in <module> from gsplat.optimizers import SelectiveAdam ModuleNotFoundError: No module named 'gsplat.optimizers'
Sorry, something went wrong.
I faced the same issue, but it worked when I installed it from the source code.
pip install git+https://github.com/nerfstudio-project/gsplat.git
It seems that the latest version on PyPI (1.4.0) is from before the changes for gsplat.optimizers were included. https://github.com/nerfstudio-project/gsplat/pull/432/files
gsplat.optimizers
Ah, I see. Thank you! I will try it.
No branches or pull requests
I set up by following readme instruction from the beginning (I installed gsplat using
pip install gsplat
), but when I ranI got below error.
How can I solve this?
The text was updated successfully, but these errors were encountered: