Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +21 -13
requirements.txt
CHANGED
|
@@ -1,13 +1,21 @@
|
|
| 1 |
-
#
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
#
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# ------------- Core deep-learning stack (CPU wheels) -------------
|
| 2 |
+
torch==2.6.0 # plain tag β CPU wheel; no "+cpu" suffix
|
| 3 |
+
torchvision==0.19.0 # matches the Torch major/minor
|
| 4 |
+
|
| 5 |
+
# ------------- Transformers / BLIP / CLIP ------------------------
|
| 6 |
+
transformers==4.42.0 # recent HF Transformers
|
| 7 |
+
sentence-transformers==2.6.1
|
| 8 |
+
timm==0.9.16 # visual backbones used by BLIP/CLIP
|
| 9 |
+
accelerate==0.29.3 # hf accelerate helper
|
| 10 |
+
|
| 11 |
+
# ------------- Vector search -------------------------------------
|
| 12 |
+
faiss-cpu==1.8.0 # FAISS with CPU SIMD
|
| 13 |
+
|
| 14 |
+
# ------------- Gradio UI -----------------------------------------
|
| 15 |
+
gradio==3.50.2 # last 3.x release compatible with Spaces
|
| 16 |
+
|
| 17 |
+
# ------------- Misc utilities ------------------------------------
|
| 18 |
+
numpy>=1.23,<1.27
|
| 19 |
+
pillow>=10.0
|
| 20 |
+
tqdm>=4.66
|
| 21 |
+
|