Update requirements.txt
Browse files- requirements.txt +41 -42
requirements.txt
CHANGED
@@ -1,42 +1,41 @@
|
|
1 |
-
# Main dependencies
|
2 |
-
torch>=2.6.0
|
3 |
-
torchvision>=0.21.0
|
4 |
-
lightning>=2.2.4
|
5 |
-
numpy>=1.26.4
|
6 |
-
matplotlib>=3.8.0
|
7 |
-
pyyaml>=6.0.0
|
8 |
-
|
9 |
-
# Huggingface
|
10 |
-
huggingface-hub>=0.30.2
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
opencv-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
#
|
21 |
-
#
|
22 |
-
#
|
23 |
-
# cupy-
|
24 |
-
# cupy-
|
25 |
-
|
26 |
-
|
27 |
-
|
28 |
-
|
29 |
-
|
30 |
-
|
31 |
-
#
|
32 |
-
#
|
33 |
-
|
34 |
-
|
35 |
-
#
|
36 |
-
|
37 |
-
|
38 |
-
|
39 |
-
|
40 |
-
imageio
|
41 |
-
|
42 |
-
|
|
|
1 |
+
# Main dependencies
|
2 |
+
torch>=2.6.0
|
3 |
+
torchvision>=0.21.0
|
4 |
+
lightning>=2.2.4
|
5 |
+
numpy>=1.26.4
|
6 |
+
matplotlib>=3.8.0
|
7 |
+
pyyaml>=6.0.0
|
8 |
+
|
9 |
+
# Huggingface
|
10 |
+
huggingface-hub>=0.30.2
|
11 |
+
safetensors
|
12 |
+
|
13 |
+
# Image processing and computer vision
|
14 |
+
kornia>=0.7.2
|
15 |
+
opencv-python>=4.10.0.84
|
16 |
+
opencv-contrib-python>=4.10.0.84
|
17 |
+
einops>=0.8.0
|
18 |
+
|
19 |
+
# Custom cuda implementation /modules/cupy_module/
|
20 |
+
cupy-cuda12x>=12.0.0 # For CUDA 12.4
|
21 |
+
# Note: For cupy, you need to install the specific version for your CUDA version
|
22 |
+
# Examples:
|
23 |
+
# cupy-cuda11x for CUDA 11.x
|
24 |
+
# cupy-cuda12x for CUDA 12.x
|
25 |
+
# cupy-cuda10x for CUDA 10.x
|
26 |
+
|
27 |
+
# Utilities and tools
|
28 |
+
scipy>=1.7.0
|
29 |
+
tensorboard>=2.8.0
|
30 |
+
|
31 |
+
# Project-Specific Dependencies
|
32 |
+
# RAFT (Flow Estimation)
|
33 |
+
# Note: RAFT is included in the project code; no external installation is required.
|
34 |
+
|
35 |
+
# FLOLPIPS (Quality Metrics)
|
36 |
+
# Note: FLOLPIPS is included in the project code; no external installation is required.
|
37 |
+
|
38 |
+
# Gradio
|
39 |
+
gradio>=4.34.0
|
40 |
+
imageio>=2.34.1
|
41 |
+
imageio-ffmpeg>=0.6.0
|
|