Spaces:
Running
Running
Create requirements.txt
Browse files- requirements.txt +16 -0
requirements.txt
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Core libraries
|
2 |
+
torch>=2.0.0 # PyTorch, required for machine learning models
|
3 |
+
diffusers>=0.22.0 # Hugging Face library for image/video pipelines
|
4 |
+
transformers>=4.25.0 # For text-to-image or text-related functionalities
|
5 |
+
|
6 |
+
# Image and video processing
|
7 |
+
Pillow>=9.0.0 # For image loading and manipulation
|
8 |
+
imageio[ffmpeg]>=2.31.0 # For video creation and exporting
|
9 |
+
|
10 |
+
# Optimizations
|
11 |
+
torchvision>=0.15.0 # For image-related utilities
|
12 |
+
accelerate>=0.20.0 # For optimization on multi-GPU setups
|
13 |
+
xformers>=0.0.21 # Optional but highly recommended for performance boost
|
14 |
+
|
15 |
+
# Other utilities
|
16 |
+
numpy>=1.23.0 # For array operations
|