Spaces:
Runtime error
Runtime error
Mattia2700
commited on
Commit
•
e0705ba
1
Parent(s):
d19b4a1
fix: run it at the beginning
Browse files- app.py +1 -0
- requirements.txt +0 -99
- requirements.txt +1 -0
app.py
CHANGED
@@ -34,4 +34,5 @@ iface = gr.Interface(fn=load_mesh,
|
|
34 |
)
|
35 |
|
36 |
if __name__ == "__main__":
|
|
|
37 |
iface.launch()
|
|
|
34 |
)
|
35 |
|
36 |
if __name__ == "__main__":
|
37 |
+
subprocess.run(["pip", "install", "git+https://github.com/facebookresearch/pytorch3d.git@stable"])
|
38 |
iface.launch()
|
requirements.txt
DELETED
@@ -1,99 +0,0 @@
|
|
1 |
-
accelerate==0.17.1
|
2 |
-
addict==2.4.0
|
3 |
-
asttokens==2.2.1
|
4 |
-
attrs==22.2.0
|
5 |
-
backcall==0.2.0
|
6 |
-
charset-normalizer==3.1.0
|
7 |
-
click==8.1.3
|
8 |
-
comm==0.1.2
|
9 |
-
ConfigArgParse==1.5.3
|
10 |
-
contourpy==1.0.7
|
11 |
-
cycler==0.11.0
|
12 |
-
dash==2.9.1
|
13 |
-
dash-core-components==2.0.0
|
14 |
-
dash-html-components==2.0.0
|
15 |
-
dash-table==5.0.0
|
16 |
-
debugpy==1.6.6
|
17 |
-
decorator==5.1.1
|
18 |
-
diffusers==0.14.0
|
19 |
-
executing==1.2.0
|
20 |
-
fastjsonschema==2.16.3
|
21 |
-
filelock==3.10.0
|
22 |
-
Flask==2.2.3
|
23 |
-
fonttools==4.39.2
|
24 |
-
huggingface-hub==0.13.3
|
25 |
-
idna==3.4
|
26 |
-
imageio==2.26.1
|
27 |
-
importlib-metadata==6.1.0
|
28 |
-
importlib-resources==5.12.0
|
29 |
-
ipykernel==6.22.0
|
30 |
-
ipython==8.11.0
|
31 |
-
ipywidgets==8.0.4
|
32 |
-
itsdangerous==2.1.2
|
33 |
-
jedi==0.18.2
|
34 |
-
Jinja2==3.1.2
|
35 |
-
joblib==1.2.0
|
36 |
-
jsonschema==4.17.3
|
37 |
-
jupyter_client==8.1.0
|
38 |
-
jupyter_core==5.3.0
|
39 |
-
jupyterlab-widgets==3.0.5
|
40 |
-
kiwisolver==1.4.4
|
41 |
-
MarkupSafe==2.1.2
|
42 |
-
matplotlib==3.7.1
|
43 |
-
matplotlib-inline==0.1.6
|
44 |
-
nbformat==5.7.0
|
45 |
-
nest-asyncio==1.5.6
|
46 |
-
networkx==3.0
|
47 |
-
numpy==1.24.2
|
48 |
-
nvidia-cublas-cu11==11.10.3.66
|
49 |
-
nvidia-cuda-nvrtc-cu11==11.7.99
|
50 |
-
nvidia-cuda-runtime-cu11==11.7.99
|
51 |
-
nvidia-cudnn-cu11==8.5.0.96
|
52 |
-
open3d==0.17.0
|
53 |
-
opencv-python==4.7.0.72
|
54 |
-
packaging==23.0
|
55 |
-
pandas==1.5.3
|
56 |
-
parso==0.8.3
|
57 |
-
pexpect==4.8.0
|
58 |
-
pickleshare==0.7.5
|
59 |
-
Pillow==9.4.0
|
60 |
-
platformdirs==3.1.1
|
61 |
-
plotly==5.13.1
|
62 |
-
prompt-toolkit==3.0.38
|
63 |
-
psutil==5.9.4
|
64 |
-
ptyprocess==0.7.0
|
65 |
-
pure-eval==0.2.2
|
66 |
-
Pygments==2.14.0
|
67 |
-
pymeshlab==2022.2.post3
|
68 |
-
pyparsing==3.0.9
|
69 |
-
pyquaternion==0.9.9
|
70 |
-
pyrsistent==0.19.3
|
71 |
-
python-dateutil==2.8.2
|
72 |
-
pytz==2022.7.1
|
73 |
-
PyYAML==6.0
|
74 |
-
pyzmq==25.0.2
|
75 |
-
regex==2022.10.31
|
76 |
-
requests==2.28.2
|
77 |
-
Rtree==1.0.1
|
78 |
-
scikit-learn==1.2.2
|
79 |
-
scipy==1.10.1
|
80 |
-
six==1.16.0
|
81 |
-
stack-data==0.6.2
|
82 |
-
tenacity==8.2.2
|
83 |
-
threadpoolctl==3.1.0
|
84 |
-
tokenizers==0.13.2
|
85 |
-
torch==1.13.1
|
86 |
-
torchaudio==0.13.1
|
87 |
-
torchvision==0.14.1
|
88 |
-
tornado==6.2
|
89 |
-
tqdm==4.65.0
|
90 |
-
traitlets==5.9.0
|
91 |
-
transformers==4.27.2
|
92 |
-
trimesh==3.20.2
|
93 |
-
typing_extensions==4.5.0
|
94 |
-
urllib3==1.26.15
|
95 |
-
wcwidth==0.2.6
|
96 |
-
Werkzeug==2.2.3
|
97 |
-
widgetsnbextension==4.0.5
|
98 |
-
zipp==3.15.0
|
99 |
-
git+https://github.com/facebookresearch/pytorch3d.git@stable
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
requirements.txt
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
text2room/requirements.txt
|