Spaces:
Build error
Build error
Update requirements.txt
Browse files- requirements.txt +30 -11
requirements.txt
CHANGED
|
@@ -1,11 +1,30 @@
|
|
| 1 |
-
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
| 7 |
-
|
| 8 |
-
fastapi
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 2 |
+
# VERIDEX β Master UI Space requirements.txt
|
| 3 |
+
#
|
| 4 |
+
# Same rules as the Worker: no gradio pin, floor-only for torch/numpy.
|
| 5 |
+
# ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
|
| 6 |
+
|
| 7 |
+
# Web framework & server
|
| 8 |
+
fastapi>=0.111.0
|
| 9 |
+
uvicorn[standard]>=0.30.0
|
| 10 |
+
python-multipart>=0.0.9 # required by FastAPI for UploadFile
|
| 11 |
+
|
| 12 |
+
# Gradio client β talks to the 7 Worker Spaces
|
| 13 |
+
# gradio_client 2.x ships with Gradio 6 and is the correct wire-protocol version
|
| 14 |
+
gradio_client>=2.0.0
|
| 15 |
+
|
| 16 |
+
# Face detection
|
| 17 |
+
facenet-pytorch>=2.6.0
|
| 18 |
+
|
| 19 |
+
# Deep-learning runtime (CPU-only fine here β UI does no model inference)
|
| 20 |
+
torch>=2.1.0
|
| 21 |
+
torchvision>=0.16.0
|
| 22 |
+
|
| 23 |
+
# Computer vision
|
| 24 |
+
opencv-python-headless>=4.8.0
|
| 25 |
+
|
| 26 |
+
# Numerical
|
| 27 |
+
numpy>=1.24,<3.0
|
| 28 |
+
|
| 29 |
+
# Image handling
|
| 30 |
+
Pillow>=10.0.0
|