Create requirements.txt
Browse files- requirements.txt +8 -0
requirements.txt
ADDED
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
torch==2.0.1+cpu # CPU-only PyTorch; adjust version as needed
|
2 |
+
torchvision==0.15.2+cpu # Matching torchvision for CPU
|
3 |
+
diffusers==0.20.0 # For Stable Diffusion pipeline
|
4 |
+
transformers==4.35.0 # Required by diffusers for tokenization
|
5 |
+
numpy==1.24.3 # Common dependency for numerical operations
|
6 |
+
pillow==10.0.0 # Image processing
|
7 |
+
requests==2.31.0 # For downloading weights or API calls
|
8 |
+
safetensors==0.4.0 # Faster model loading
|