Skip to content

Commit cf57cc9

Browse files
authored
Fix evaluation scripts (nerfstudio-project#510)
1 parent 7bb2669 commit cf57cc9

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,11 +40,12 @@ To build gsplat from source on Windows, please check [this instruction](docs/INS
4040
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).
4141

4242
```bash
43-
pip install -r examples/requirements.txt
43+
cd examples
44+
pip install -r requirements.txt
4445
# download mipnerf_360 benchmark data
45-
python examples/datasets/download_dataset.py
46+
python datasets/download_dataset.py
4647
# run batch evaluation
47-
bash examples/benchmarks/basic.sh
48+
bash benchmarks/basic.sh
4849
```
4950

5051
## Examples

gsplat/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import warnings
22

33
from .compression import PngCompression
4+
from .optimizers import SelectiveAdam
45
from .cuda._torch_impl import accumulate
56
from .cuda._torch_impl_2dgs import accumulate_2dgs
67
from .cuda._wrapper import (

0 commit comments

Comments
 (0)