sdafd commited on
Commit
0ba3b86
·
verified ·
1 Parent(s): fc4cd04

Create requirements.txt

Browse files
Files changed (1) hide show
  1. 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