Spaces:
Paused
Paused
try -f for pyg
Browse files- app.py +2 -0
- requirements.txt +3 -1
app.py
CHANGED
|
@@ -89,6 +89,8 @@ def main():
|
|
| 89 |
# subprocess.run(['pip', 'install', '-r', 'requirements', '--no-cache-dir'])
|
| 90 |
print('Cloning PPSurf... Done')
|
| 91 |
|
|
|
|
|
|
|
| 92 |
description_header = '# PPSurf: Combining Patches and Point Convolutions for Detailed Surface Reconstruction'
|
| 93 |
|
| 94 |
description_col0 = '''## [Github](https://github.com/cg-tuwien/ppsurf)
|
|
|
|
| 89 |
# subprocess.run(['pip', 'install', '-r', 'requirements', '--no-cache-dir'])
|
| 90 |
print('Cloning PPSurf... Done')
|
| 91 |
|
| 92 |
+
subprocess.run(['pip', 'list'])
|
| 93 |
+
|
| 94 |
description_header = '# PPSurf: Combining Patches and Point Convolutions for Detailed Surface Reconstruction'
|
| 95 |
|
| 96 |
description_col0 = '''## [Github](https://github.com/cg-tuwien/ppsurf)
|
requirements.txt
CHANGED
|
@@ -1,5 +1,6 @@
|
|
| 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
|
|
@@ -22,5 +23,6 @@ jsonargparse[signatures]>=4.27.5
|
|
| 22 |
|
| 23 |
spaces>=0.23
|
| 24 |
gradio>=4.19
|
|
|
|
| 25 |
--index-url https://download.pytorch.org/whl/cu124
|
| 26 |
--extra-index-url=https://pypi.org/simple
|
|
|
|
| 1 |
pytorch-lightning>=2.1
|
| 2 |
+
# torch_geometric>=2
|
| 3 |
+
pyg_lib
|
| 4 |
torch-cluster>=1.6.0
|
| 5 |
scikit-learn-intelex>=2024.1.0
|
| 6 |
numpy>=1.26.4
|
|
|
|
| 23 |
|
| 24 |
spaces>=0.23
|
| 25 |
gradio>=4.19
|
| 26 |
+
-f https://data.pyg.org/whl/torch-2.1.0+cu124.html
|
| 27 |
--index-url https://download.pytorch.org/whl/cu124
|
| 28 |
--extra-index-url=https://pypi.org/simple
|