Skip to content
New issue

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

Fix evaluation scripts #510

Merged
merged 1 commit into from
Dec 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,12 @@ To build gsplat from source on Windows, please check [this instruction](docs/INS
This repo comes with a standalone script that reproduces the official Gaussian Splatting with exactly the same performance on PSNR, SSIM, LPIPS, and converged number of Gaussians. Powered by gsplat’s efficient CUDA implementation, the training takes up to **4x less GPU memory** with up to **15% less time** to finish than the official implementation. Full report can be found [here](https://docs.gsplat.studio/main/tests/eval.html).

```bash
pip install -r examples/requirements.txt
cd examples
pip install -r requirements.txt
# download mipnerf_360 benchmark data
python examples/datasets/download_dataset.py
python datasets/download_dataset.py
# run batch evaluation
bash examples/benchmarks/basic.sh
bash benchmarks/basic.sh
```

## Examples
Expand Down
1 change: 1 addition & 0 deletions gsplat/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import warnings

from .compression import PngCompression
from .optimizers import SelectiveAdam
from .cuda._torch_impl import accumulate
from .cuda._torch_impl_2dgs import accumulate_2dgs
from .cuda._wrapper import (
Expand Down
Loading