Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +54 -5
requirements.txt
CHANGED
|
@@ -1,6 +1,55 @@
|
|
| 1 |
-
|
| 2 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
invisible_watermark
|
| 4 |
-
|
| 5 |
-
|
| 6 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Core ML and AI libraries
|
| 2 |
+
torch>=2.0.0
|
| 3 |
+
torchvision
|
| 4 |
+
diffusers>=0.25.0
|
| 5 |
+
transformers>=4.30.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>=4.8.0
|
| 19 |
+
imageio[ffmpeg]>=2.31.0
|
| 20 |
+
imageio-ffmpeg>=0.4.9
|
| 21 |
+
moviepy>=1.0.3
|
| 22 |
+
ffmpeg-python
|
| 23 |
+
|
| 24 |
+
# Web interface
|
| 25 |
+
gradio>=4.15.0
|
| 26 |
+
|
| 27 |
+
# Utils
|
| 28 |
+
numpy<1.24.0
|
| 29 |
+
scipy
|
| 30 |
+
matplotlib
|
| 31 |
+
requests
|
| 32 |
+
tqdm
|
| 33 |
+
safetensors>=0.3.0
|
| 34 |
+
|
| 35 |
+
# Video processing essentials
|
| 36 |
+
av>=10.0.0
|
| 37 |
+
decord>=0.6.0
|
| 38 |
+
|
| 39 |
+
# Memory optimization
|
| 40 |
+
xformers; sys_platform != "darwin"
|
| 41 |
+
bitsandbytes; sys_platform == "linux"
|
| 42 |
+
|
| 43 |
+
# Additional utilities
|
| 44 |
invisible_watermark
|
| 45 |
+
compel>=2.0.0
|
| 46 |
+
ftfy
|
| 47 |
+
regex
|
| 48 |
+
|
| 49 |
+
# Enhanced model support
|
| 50 |
+
omegaconf
|
| 51 |
+
hydra-core
|
| 52 |
+
|
| 53 |
+
# Video codec support
|
| 54 |
+
h5py
|
| 55 |
+
scikit-video
|