Update requirements.txt
Browse files- requirements.txt +28 -10
requirements.txt
CHANGED
|
@@ -1,14 +1,32 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
torch-scatter
|
| 5 |
torch-sparse
|
| 6 |
torch-cluster
|
| 7 |
torch-spline-conv
|
| 8 |
-
|
| 9 |
-
#
|
| 10 |
-
numpy
|
| 11 |
-
scipy
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core dependencies
|
| 2 |
+
torch==1.12.0
|
| 3 |
+
torchvision==0.13.0
|
| 4 |
+
|
| 5 |
+
# PyTorch Geometric and extensions
|
| 6 |
+
torch-geometric==1.7.2
|
| 7 |
+
pyg-lib
|
| 8 |
torch-scatter
|
| 9 |
torch-sparse
|
| 10 |
torch-cluster
|
| 11 |
torch-spline-conv
|
| 12 |
+
|
| 13 |
+
# Scientific computing
|
| 14 |
+
numpy>=1.19.0,<1.24.0
|
| 15 |
+
scipy>=1.5.0
|
| 16 |
+
|
| 17 |
+
# 3D processing
|
| 18 |
+
open3d==0.9.0
|
| 19 |
+
trimesh>=3.9.0
|
| 20 |
+
|
| 21 |
+
# Visualization
|
| 22 |
+
matplotlib>=3.3.0
|
| 23 |
+
|
| 24 |
+
# Utilities
|
| 25 |
+
opencv-python>=4.5.0
|
| 26 |
+
Rtree>=0.8,<0.9
|
| 27 |
+
|
| 28 |
+
# Gradio for web interface
|
| 29 |
+
gradio>=4.0.0
|
| 30 |
+
|
| 31 |
+
# Additional utilities
|
| 32 |
+
tensorboard>=2.4.0
|