Spaces:
Runtime error
Runtime error
Commit
·
efabee6
1
Parent(s):
80c900b
Removing diff_gaussian_rasterization dependency
Browse files- requirements.txt +1 -1
- src/pixelsplat_src/cuda_splatting.py +6 -4
requirements.txt
CHANGED
|
@@ -37,4 +37,4 @@ e3nn
|
|
| 37 |
plyfile
|
| 38 |
tabulate
|
| 39 |
svg.py
|
| 40 |
-
git+https://github.com/dcharatan/diff-gaussian-rasterization-modified
|
|
|
|
| 37 |
plyfile
|
| 38 |
tabulate
|
| 39 |
svg.py
|
| 40 |
+
# git+https://github.com/dcharatan/diff-gaussian-rasterization-modified
|
src/pixelsplat_src/cuda_splatting.py
CHANGED
|
@@ -2,10 +2,12 @@ from math import isqrt
|
|
| 2 |
from typing import Literal
|
| 3 |
|
| 4 |
import torch
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
|
|
|
|
|
|
|
| 9 |
from einops import einsum, rearrange, repeat
|
| 10 |
from torch import Tensor
|
| 11 |
|
|
|
|
| 2 |
from typing import Literal
|
| 3 |
|
| 4 |
import torch
|
| 5 |
+
# @REMOVED for the Huggingface demo. This code should not be called in the
|
| 6 |
+
# execution of the demo demo.
|
| 7 |
+
# from diff_gaussian_rasterization import (
|
| 8 |
+
# GaussianRasterizationSettings,
|
| 9 |
+
# GaussianRasterizer,
|
| 10 |
+
# )
|
| 11 |
from einops import einsum, rearrange, repeat
|
| 12 |
from torch import Tensor
|
| 13 |
|