ckc99u commited on
Commit
1da277a
·
verified ·
1 Parent(s): a5ba94d

Update requirements.txt

Browse files
Files changed (1) hide show
  1. requirements.txt +28 -10
requirements.txt CHANGED
@@ -1,14 +1,32 @@
1
- torch==2.1.2
2
- torchvision==0.16.2
3
- # Modern PyTorch Geometric (no need for -f links usually, but good for safety)
 
 
 
 
4
  torch-scatter
5
  torch-sparse
6
  torch-cluster
7
  torch-spline-conv
8
- torch-geometric
9
- # Standard libs
10
- numpy
11
- scipy
12
- trimesh
13
- open3d
14
- gradio
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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