Hunsain Mazhar commited on
Commit Β·
fac8d4d
1
Parent(s): 3327fc9
Update requirements.txt for critical infrastructure and compatibility improvements; fixed ZeroGPU auth bug, updated core libraries, and adjusted dependencies for Diffusers and Transformers.
Browse files- requirements.txt +21 -16
requirements.txt
CHANGED
|
@@ -1,27 +1,32 @@
|
|
| 1 |
-
# --- CORE INFRASTRUCTURE ---
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
|
|
|
|
| 5 |
|
| 6 |
# --- AI FRAMEWORKS ---
|
| 7 |
-
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
|
|
|
| 12 |
|
| 13 |
# --- IDM-VTON DEPENDENCIES ---
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
|
|
|
|
|
|
|
|
|
| 17 |
scipy==1.10.1
|
| 18 |
scikit-image==0.21.0
|
| 19 |
opencv-python-headless
|
| 20 |
-
pillow
|
| 21 |
matplotlib==3.7.4
|
| 22 |
-
tqdm
|
| 23 |
-
config
|
| 24 |
-
einops
|
| 25 |
basicsr
|
| 26 |
av
|
| 27 |
fvcore
|
|
|
|
| 1 |
+
# --- CORE INFRASTRUCTURE (CRITICAL UPDATES) ---
|
| 2 |
+
# Updated to fix the "Unlogged User" / ZeroGPU auth bug
|
| 3 |
+
spaces>=0.32.0
|
| 4 |
+
gradio>=5.0.0
|
| 5 |
+
huggingface_hub>=0.26.2
|
| 6 |
|
| 7 |
# --- AI FRAMEWORKS ---
|
| 8 |
+
# Updated to match newer Diffusers/Gradio compatibility
|
| 9 |
+
torch==2.4.0
|
| 10 |
+
torchvision==0.19.0
|
| 11 |
+
torchaudio==2.4.0
|
| 12 |
+
numpy<2.0.0
|
| 13 |
+
accelerate>=0.34.0
|
| 14 |
|
| 15 |
# --- IDM-VTON DEPENDENCIES ---
|
| 16 |
+
# Updated Diffusers/Transformers per HF Support request
|
| 17 |
+
diffusers>=0.30.0
|
| 18 |
+
transformers>=4.44.2
|
| 19 |
+
pydantic>=2.9.0
|
| 20 |
+
|
| 21 |
+
# --- STABLE DEPENDENCIES (Keep these pinned to avoid math errors) ---
|
| 22 |
scipy==1.10.1
|
| 23 |
scikit-image==0.21.0
|
| 24 |
opencv-python-headless
|
| 25 |
+
pillow>=10.3.0
|
| 26 |
matplotlib==3.7.4
|
| 27 |
+
tqdm
|
| 28 |
+
config
|
| 29 |
+
einops
|
| 30 |
basicsr
|
| 31 |
av
|
| 32 |
fvcore
|