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 typo #392

Merged
merged 1 commit into from
Sep 7, 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
2 changes: 1 addition & 1 deletion docs/source/examples/colmap.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ model for novel view synthesis, on a COLMAP processed capture. This script follo
exact same logic with the `official implementation
<https://github.com/graphdeco-inria/gaussian-splatting>`_ and we have verified it to be
able to reproduce the metrics in the paper, with much better training speed and memory
footprint. See :doc:`../tests/eval` for more details on the comparision.
footprint. See :doc:`../tests/eval` for more details on the comparison.

Simply run the script under `examples/`:

Expand Down
4 changes: 2 additions & 2 deletions gsplat/rendering.py
Original file line number Diff line number Diff line change
Expand Up @@ -814,7 +814,7 @@ def _rasterization(
# """Wrapper for old version gsplat.

# .. warning::
# This function exists for comparision purpose only. So we skip collecting
# This function exists for comparison purpose only. So we skip collecting
# the intermidiate variables, and only return an empty dict.

# """
Expand Down Expand Up @@ -904,7 +904,7 @@ def rasterization_inria_wrapper(
"""Wrapper for Inria's rasterization backend.

.. warning::
This function exists for comparision purpose only. Only rendered image is
This function exists for comparison purpose only. Only rendered image is
returned.

.. warning::
Expand Down
Loading