Spaces:
Runtime error
Runtime error
Upload requirements.txt
Browse files- requirements.txt +20 -0
requirements.txt
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core packages
|
| 2 |
+
flask==2.3.2
|
| 3 |
+
flask-cors==3.0.10
|
| 4 |
+
flask-socketio==5.3.4
|
| 5 |
+
python-engineio==4.3.4
|
| 6 |
+
python-socketio==5.8.0
|
| 7 |
+
eventlet==0.33.3
|
| 8 |
+
|
| 9 |
+
# Computer Vision
|
| 10 |
+
opencv-python-headless==4.8.0.74
|
| 11 |
+
numpy==1.24.3 # Pinned to version compatible with tensorflow-cpu
|
| 12 |
+
|
| 13 |
+
# Machine Learning
|
| 14 |
+
tensorflow-cpu==2.13.0 # Version supporting CAST op version 5
|
| 15 |
+
mediapipe==0.10.9 # Latest stable version
|
| 16 |
+
|
| 17 |
+
# Additional dependencies
|
| 18 |
+
protobuf>=3.20.3,<4 # Minimum version for TF while keeping mediapipe compatibility
|
| 19 |
+
absl-py==1.4.0
|
| 20 |
+
flatbuffers>=2.0 # Required by mediapipe 0.10.9
|