Update requirements.txt
Browse files- requirements.txt +39 -25
requirements.txt
CHANGED
|
@@ -1,48 +1,62 @@
|
|
| 1 |
-
# Core ML and AI libraries
|
| 2 |
torch>=2.0.0
|
| 3 |
-
torchvision
|
|
|
|
| 4 |
diffusers>=0.21.0
|
| 5 |
transformers>=4.21.0
|
| 6 |
accelerate>=0.20.0
|
| 7 |
|
| 8 |
# Hugging Face Spaces GPU support
|
| 9 |
-
spaces
|
| 10 |
|
| 11 |
# LoRA and fine-tuning support
|
| 12 |
peft>=0.4.0
|
| 13 |
-
loralib
|
| 14 |
-
adapter-transformers
|
| 15 |
|
| 16 |
# Image and Video processing
|
| 17 |
Pillow>=9.0.0
|
| 18 |
-
opencv-python-headless
|
| 19 |
-
imageio[ffmpeg]
|
| 20 |
-
moviepy
|
| 21 |
|
| 22 |
# Web interface
|
| 23 |
gradio>=4.0.0
|
| 24 |
|
| 25 |
# Utils
|
| 26 |
-
numpy
|
| 27 |
-
scipy
|
| 28 |
-
matplotlib
|
| 29 |
-
requests
|
| 30 |
-
tqdm
|
| 31 |
-
safetensors
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
|
| 33 |
# Optional video processing
|
| 34 |
-
imageio-ffmpeg
|
| 35 |
|
| 36 |
-
# Memory optimization
|
| 37 |
-
|
| 38 |
-
bitsandbytes; sys_platform == "linux"
|
| 39 |
|
| 40 |
-
# Additional utilities
|
| 41 |
-
invisible_watermark
|
| 42 |
-
compel
|
| 43 |
-
ftfy
|
| 44 |
-
regex
|
| 45 |
|
| 46 |
# Enhanced model support
|
| 47 |
-
omegaconf
|
| 48 |
-
hydra-core
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core ML and AI libraries for SDXL
|
| 2 |
torch>=2.0.0
|
| 3 |
+
torchvision>=0.15.0
|
| 4 |
+
torchaudio>=2.0.0
|
| 5 |
diffusers>=0.21.0
|
| 6 |
transformers>=4.21.0
|
| 7 |
accelerate>=0.20.0
|
| 8 |
|
| 9 |
# Hugging Face Spaces GPU support
|
| 10 |
+
spaces>=0.9.0
|
| 11 |
|
| 12 |
# LoRA and fine-tuning support
|
| 13 |
peft>=0.4.0
|
| 14 |
+
loralib>=0.1.1
|
| 15 |
+
adapter-transformers>=3.2.1
|
| 16 |
|
| 17 |
# Image and Video processing
|
| 18 |
Pillow>=9.0.0
|
| 19 |
+
opencv-python-headless>=4.8.0
|
| 20 |
+
imageio[ffmpeg]>=2.25.0
|
| 21 |
+
moviepy>=1.0.3
|
| 22 |
|
| 23 |
# Web interface
|
| 24 |
gradio>=4.0.0
|
| 25 |
|
| 26 |
# Utils
|
| 27 |
+
numpy>=1.21.0,<1.25.0
|
| 28 |
+
scipy>=1.9.0
|
| 29 |
+
matplotlib>=3.5.0
|
| 30 |
+
requests>=2.28.0
|
| 31 |
+
tqdm>=4.64.0
|
| 32 |
+
safetensors>=0.3.0
|
| 33 |
+
|
| 34 |
+
# SDXL specific requirements
|
| 35 |
+
xformers>=0.0.20; sys_platform != "darwin"
|
| 36 |
+
bitsandbytes>=0.41.0; sys_platform == "linux"
|
| 37 |
|
| 38 |
# Optional video processing
|
| 39 |
+
imageio-ffmpeg>=0.4.7
|
| 40 |
|
| 41 |
+
# Memory optimization and performance
|
| 42 |
+
triton>=2.0.0; sys_platform == "linux"
|
|
|
|
| 43 |
|
| 44 |
+
# Additional utilities for Illustrious XL
|
| 45 |
+
invisible_watermark>=0.2.0
|
| 46 |
+
compel>=2.0.0
|
| 47 |
+
ftfy>=6.1.0
|
| 48 |
+
regex>=2022.10.31
|
| 49 |
|
| 50 |
# Enhanced model support
|
| 51 |
+
omegaconf>=2.3.0
|
| 52 |
+
hydra-core>=1.3.0
|
| 53 |
+
|
| 54 |
+
# JSON and file handling
|
| 55 |
+
orjson>=3.8.0
|
| 56 |
+
|
| 57 |
+
# Multi-language support (optional)
|
| 58 |
+
langdetect>=1.0.9
|
| 59 |
+
googletrans>=4.0.0
|
| 60 |
+
|
| 61 |
+
# Advanced prompt processing
|
| 62 |
+
sentence-transformers>=2.2.2
|