Spaces:
Sleeping
Sleeping
pip install seems called implicitly by HF, add torch cluster to requirements
Browse files- app.py +1 -1
- requirements.txt +1 -0
app.py
CHANGED
@@ -83,7 +83,7 @@ def main():
|
|
83 |
# git submodule doesn't work in Gradio, so we clone it here
|
84 |
subprocess.run(['git', 'clone', 'https://github.com/cg-tuwien/ppsurf.git'])
|
85 |
# subprocess.run(['pip', 'install', '-r', 'ppsurf/requirements', '--no-cache-dir'])
|
86 |
-
subprocess.run(['pip', 'install', '-r', 'requirements', '--no-cache-dir'])
|
87 |
|
88 |
description_header = '# PPSurf: Combining Patches and Point Convolutions for Detailed Surface Reconstruction'
|
89 |
|
|
|
83 |
# git submodule doesn't work in Gradio, so we clone it here
|
84 |
subprocess.run(['git', 'clone', 'https://github.com/cg-tuwien/ppsurf.git'])
|
85 |
# subprocess.run(['pip', 'install', '-r', 'ppsurf/requirements', '--no-cache-dir'])
|
86 |
+
# subprocess.run(['pip', 'install', '-r', 'requirements', '--no-cache-dir'])
|
87 |
|
88 |
description_header = '# PPSurf: Combining Patches and Point Convolutions for Detailed Surface Reconstruction'
|
89 |
|
requirements.txt
CHANGED
@@ -1,5 +1,6 @@
|
|
1 |
pytorch-lightning>=2.1
|
2 |
torch_geometric>=2
|
|
|
3 |
scikit-learn-intelex>=2024.1.0
|
4 |
numpy>=1.26.4
|
5 |
scikit-image>=0.22.0
|
|
|
1 |
pytorch-lightning>=2.1
|
2 |
torch_geometric>=2
|
3 |
+
torch-cluster>=1.6.0
|
4 |
scikit-learn-intelex>=2024.1.0
|
5 |
numpy>=1.26.4
|
6 |
scikit-image>=0.22.0
|