Spaces:
Running
Running
Update requirements.txt
Browse files- requirements.txt +21 -20
requirements.txt
CHANGED
@@ -1,20 +1,21 @@
|
|
1 |
-
# Core Dependencies
|
2 |
-
streamlit
|
3 |
-
numpy<2 # Prevents incompatibility issues with PyTorch
|
4 |
-
pandas
|
5 |
-
plotly
|
6 |
-
matplotlib
|
7 |
-
seaborn
|
8 |
-
joypy
|
9 |
-
joblib
|
10 |
-
|
11 |
-
# Machine Learning & Image Processing
|
12 |
-
torch
|
13 |
-
torchvision
|
14 |
-
torchaudio
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
|
|
|
1 |
+
# Core Dependencies
|
2 |
+
streamlit
|
3 |
+
numpy<2 # Prevents incompatibility issues with PyTorch
|
4 |
+
pandas
|
5 |
+
plotly
|
6 |
+
matplotlib
|
7 |
+
seaborn
|
8 |
+
joypy
|
9 |
+
joblib
|
10 |
+
|
11 |
+
# Machine Learning & Image Processing
|
12 |
+
torch==2.1.2+cpu
|
13 |
+
torchvision==0.16.2+cpu
|
14 |
+
torchaudio==2.1.2+cpu
|
15 |
+
|
16 |
+
opencv-python-headless # Prevents OpenGL issues
|
17 |
+
pillow
|
18 |
+
|
19 |
+
# Serialization & Utilities
|
20 |
+
dill
|
21 |
+
pickle-mixin
|