Skip to content

Commit 0cec30d

Browse files
committed
fix some minor typos
1 parent a4c563c commit 0cec30d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -216,10 +216,10 @@ <h2 class="title is-3">Abstract</h2>
216216
Existing methods reduce the optimization time by decreasing the number of Gaussians or by improving the implementation of the differentiable rasterizer.
217217
However, they still rely on the ADAM optimizer to fit Gaussian parameters of a scene in thousands of iterations, which can take up to an hour.
218218
To this end, we change the optimizer to LM that runs in conjunction with the 3DGS differentiable rasterizer.
219-
For efficient GPU parallization, we propose a caching data structure for intermediate gradients that allows us to efficiently calculate Jacobian-vector products in custom CUDA kernels.
219+
For efficient GPU parallelization, we propose a caching data structure for intermediate gradients that allows us to efficiently calculate Jacobian-vector products in custom CUDA kernels.
220220
In every LM iteration, we calculate update directions from multiple image subsets using these kernels and combine them in a weighted mean.
221221
Overall, our method is 30% faster than the original 3DGS while obtaining the same reconstruction quality.
222-
Our optimization is also agnostic to other methods that acclerate 3DGS, thus enabling even faster speedups compared to vanilla 3DGS.
222+
Our optimization is also agnostic to other methods that accelerate 3DGS, thus enabling even faster speedups compared to vanilla 3DGS.
223223
</p>
224224
</div>
225225
</div>
@@ -259,7 +259,7 @@ <h2 class="title is-3">Overview</h2>
259259
<h2 class="title is-3">Parallelization Scheme for PCG</h2>
260260
<div class="content has-text-justified">
261261
<p>
262-
We propose a highly-efficient GPU parallization scheme for the preconditioned conjugate gradient (PCG) algorithm within the inner LM loop in order to obtain the respective update directions.
262+
We propose a highly-efficient GPU parallelization scheme for the preconditioned conjugate gradient (PCG) algorithm within the inner LM loop in order to obtain the respective update directions.
263263
To this end, we extend the differentiable 3DGS rasterizer with custom CUDA kernels that compute Jacobian-vector products.
264264
</p>
265265
<img src="static/images/pcg-alg.jpg" style="max-width:600px;width:100%" alt="We obtain update directions by solving the normal equations with PCG.">

static/3DGS-LM_paper.pdf

176 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)