Spaces:
Sleeping
Sleeping
Update requirements.txt
Browse files- requirements.txt +27 -23
requirements.txt
CHANGED
@@ -1,30 +1,34 @@
|
|
1 |
-
|
2 |
-
torch>=2.
|
3 |
-
|
4 |
-
|
|
|
|
|
5 |
|
6 |
-
#
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
|
11 |
-
#
|
12 |
gradio>=4.0.0
|
13 |
|
14 |
-
#
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
19 |
|
20 |
-
# Additional
|
21 |
-
|
22 |
-
|
23 |
-
huggingface-hub>=0.19.0
|
24 |
-
sentencepiece>=0.1.99
|
25 |
-
protobuf>=3.20.0
|
26 |
|
27 |
-
#
|
|
|
|
|
|
|
|
|
28 |
|
29 |
-
#
|
30 |
-
|
|
|
1 |
+
## Core ML and Image Processing
|
2 |
+
torch>=2.5.1
|
3 |
+
torchvision>=0.20.1
|
4 |
+
transformers>=4.30.0
|
5 |
+
numpy>=1.24.4
|
6 |
+
pillow>=9.4.0
|
7 |
|
8 |
+
# Computer Vision and Augmentation
|
9 |
+
opencv-python>=4.5.0
|
10 |
+
albumentations>=1.3.0
|
11 |
+
einops>=0.6.0
|
12 |
|
13 |
+
# Web Interface
|
14 |
gradio>=4.0.0
|
15 |
|
16 |
+
# Utilities
|
17 |
+
tqdm>=4.66.1
|
18 |
+
hydra-core>=1.3.2
|
19 |
+
omegaconf>=2.2.0
|
20 |
+
pyyaml>=6.0
|
21 |
+
packaging>=21.0
|
22 |
|
23 |
+
# Additional dependencies that might be needed
|
24 |
+
iopath>=0.1.10
|
25 |
+
portalocker>=2.0.0
|
|
|
|
|
|
|
26 |
|
27 |
+
# Optional but recommended
|
28 |
+
matplotlib>=3.5.0
|
29 |
+
seaborn>=0.11.0
|
30 |
+
scikit-image>=0.19.0
|
31 |
+
scikit-learn>=1.0.0
|
32 |
|
33 |
+
# For better performance (optional)
|
34 |
+
accelerate>=0.20.0
|