Spaces:
Running
Running
CrazyT
commited on
Commit
•
89c24f0
1
Parent(s):
f0df8a4
initial commit
Browse files- .gitmodules +3 -0
- Dynamic3DGaussians +1 -0
- app.py +7 -0
- requirements.txt +10 -0
.gitmodules
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
[submodule "Dynamic3DGaussians"]
|
2 |
+
path = Dynamic3DGaussians
|
3 |
+
url = https://github.com/JonathonLuiten/Dynamic3DGaussians.git
|
Dynamic3DGaussians
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Subproject commit f3bb1959fbd8880773c816eedfd9963cac43b06e
|
app.py
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
import gradio as gr
|
2 |
+
|
3 |
+
def greet(name):
|
4 |
+
return "Hello " + name + "!!"
|
5 |
+
|
6 |
+
iface = gr.Interface(fn=greet, inputs="text", outputs="text")
|
7 |
+
iface.launch()
|
requirements.txt
ADDED
@@ -0,0 +1,10 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
cudatoolkit=11.6
|
2 |
+
python=3.7.13
|
3 |
+
pip=22.3.1
|
4 |
+
pytorch=1.12.1
|
5 |
+
torchaudio=0.12.1
|
6 |
+
torchvision=0.13.1
|
7 |
+
tqdm=4.65.0
|
8 |
+
Pillow=9.4.0
|
9 |
+
open3d==0.16.0
|
10 |
+
diff-gaussian-rasterization-w-depth @ https://github.com/JonathonLuiten/diff-gaussian-rasterization-w-depth@cb65e4b86bc3bd8ed42174b72a62e8d3a3a71110
|