Skip to content

Commit

Permalink
Fix evaluation scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
rjbaw committed Dec 3, 2024
1 parent 7951619 commit 484ee27
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
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

0 comments on commit 484ee27

Please sign in to comment.