Spaces:
Runtime error
Runtime error
Upload requirements.txt with huggingface_hub
Browse files- requirements.txt +26 -0
requirements.txt
ADDED
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core ML libraries (CPU-only for HF Spaces)
|
2 |
+
torch>=2.0.0,<3.0.0 --index-url https://download.pytorch.org/whl/cpu
|
3 |
+
torchvision>=0.15.0,<1.0.0 --index-url https://download.pytorch.org/whl/cpu
|
4 |
+
open_clip_torch>=2.20.0,<3.0.0
|
5 |
+
|
6 |
+
# Hugging Face integration
|
7 |
+
huggingface_hub>=0.19.0,<1.0.0
|
8 |
+
|
9 |
+
# Image processing
|
10 |
+
pillow>=9.0.0,<11.0.0
|
11 |
+
|
12 |
+
# Data processing
|
13 |
+
pandas>=1.5.0,<3.0.0
|
14 |
+
numpy>=2.0.0
|
15 |
+
|
16 |
+
# API & UI framework
|
17 |
+
pydantic==2.10.6
|
18 |
+
gradio
|
19 |
+
|
20 |
+
requests
|
21 |
+
python-dotenv
|
22 |
+
tqdm
|
23 |
+
|
24 |
+
torchaudio
|
25 |
+
timm
|
26 |
+
transformers
|