Spaces:
Running
on
Zero
Running
on
Zero
Try new lib setup
Browse files
demo/gs_train.py
CHANGED
@@ -132,7 +132,19 @@ def train(
|
|
132 |
densify_grad_threshold=densify_grad_threshold,
|
133 |
random_background=random_background
|
134 |
)
|
135 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
136 |
|
137 |
#
|
138 |
# Copyright (C) 2023, Inria
|
|
|
132 |
densify_grad_threshold=densify_grad_threshold,
|
133 |
random_background=random_background
|
134 |
)
|
135 |
+
try:
|
136 |
+
import subprocess
|
137 |
+
nvcc_version = subprocess.check_output(['nvcc', '--version']).decode('utf-8')
|
138 |
+
print("NVCC Driver Version:", nvcc_version)
|
139 |
+
except Exception as e:
|
140 |
+
print("Error fetching NVCC Driver Version:", e)
|
141 |
+
|
142 |
+
try:
|
143 |
+
import sys
|
144 |
+
python_version = sys.version
|
145 |
+
print("Python Version:", python_version)
|
146 |
+
except Exception as e:
|
147 |
+
print("Error fetching Python Version:", e)
|
148 |
|
149 |
#
|
150 |
# Copyright (C) 2023, Inria
|
requirements.txt
CHANGED
@@ -1,5 +1,5 @@
|
|
1 |
# git+https://github.com/ostapagon/wild-gaussian-splatting.git@f9a871b1aa25709befe8ddb57aaacdf3f7a31c2f#egg=wild-gaussian-splatting
|
2 |
-
--extra-index-url https://download.pytorch.org/whl/
|
3 |
|
4 |
torch==2.4.0
|
5 |
torchvision==0.19.0
|
@@ -14,10 +14,12 @@ trimesh
|
|
14 |
|
15 |
https://huggingface.co/spaces/ostapagon/mast3r-3dgs/resolve/main/wheels/simple_knn-0.0.0-cp310-cp310-linux_x86_64.whl?download=true
|
16 |
https://huggingface.co/spaces/JeffreyXiang/TRELLIS/resolve/main/wheels/nvdiffrast-0.3.3-cp310-cp310-linux_x86_64.whl?download=true
|
|
|
|
|
|
|
17 |
tensorboard
|
18 |
pyglet<2
|
19 |
roma
|
20 |
-
https://huggingface.co/spaces/ostapagon/mast3r-3dgs/resolve/main/wheels/diff_gaussian_rasterization-0.0.0-cp310-cp310-linux_x86_64.whl?download=true
|
21 |
camtools==0.1.4
|
22 |
einops==0.7.0
|
23 |
lpips==0.1.4
|
|
|
1 |
# git+https://github.com/ostapagon/wild-gaussian-splatting.git@f9a871b1aa25709befe8ddb57aaacdf3f7a31c2f#egg=wild-gaussian-splatting
|
2 |
+
--extra-index-url https://download.pytorch.org/whl/cu124
|
3 |
|
4 |
torch==2.4.0
|
5 |
torchvision==0.19.0
|
|
|
14 |
|
15 |
https://huggingface.co/spaces/ostapagon/mast3r-3dgs/resolve/main/wheels/simple_knn-0.0.0-cp310-cp310-linux_x86_64.whl?download=true
|
16 |
https://huggingface.co/spaces/JeffreyXiang/TRELLIS/resolve/main/wheels/nvdiffrast-0.3.3-cp310-cp310-linux_x86_64.whl?download=true
|
17 |
+
https://huggingface.co/spaces/ostapagon/mast3r-3dgs/resolve/main/wheels/diff_gaussian_rasterization-0.0.0-cp310-cp310-linux_x86_64.whl?download=true
|
18 |
+
|
19 |
+
|
20 |
tensorboard
|
21 |
pyglet<2
|
22 |
roma
|
|
|
23 |
camtools==0.1.4
|
24 |
einops==0.7.0
|
25 |
lpips==0.1.4
|
wheels/diff_gaussian_rasterization-0.0.0-cp310-cp310-linux_x86_64.whl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:70a25a2c4e6b23bab1b403e04f12dbbbe0ac0aa0cd67c04d1345c1a51f3a4d4e
|
3 |
+
size 3290301
|
wheels/simple_knn-0.0.0-cp310-cp310-linux_x86_64.whl
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
-
size
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:6da49f22b9fd37ee6ed579a9724670fc54c0514fd418931b486996c0c2ff8748
|
3 |
+
size 3041144
|