Spaces:
Running
Running
Create requirements.txt
Browse files- requirements.txt +16 -0
requirements.txt
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Base requirements
|
2 |
+
gradio
|
3 |
+
torch --index-url https://download.pytorch.org/whl/cpu # Explicitly request CPU build if needed
|
4 |
+
accelerate
|
5 |
+
transformers>=4.30.0 # Version supporting necessary features
|
6 |
+
Pillow
|
7 |
+
opencv-python-headless # For image processing, headless avoids GUI conflicts
|
8 |
+
|
9 |
+
# Diffusers specific
|
10 |
+
diffusers[torch]>=0.27.0 # Use a recent version for IP-Adapter + LoRA handling
|
11 |
+
|
12 |
+
# IP Adapter dependencies (might be implicitly covered, but good to list)
|
13 |
+
# safetensors # Often used for model weights
|
14 |
+
|
15 |
+
# Optional for more detailed memory debugging (if needed)
|
16 |
+
# psutil
|