Spaces:
Runtime error
Runtime error
Update requirements.txt
Browse files- requirements.txt +23 -38
requirements.txt
CHANGED
|
@@ -1,41 +1,26 @@
|
|
|
|
|
| 1 |
transformers
|
| 2 |
-
datasets
|
| 3 |
-
tokenizers
|
| 4 |
huggingface_hub
|
| 5 |
-
evaluate
|
| 6 |
-
diffusers
|
| 7 |
accelerate
|
| 8 |
-
|
| 9 |
-
|
| 10 |
-
|
| 11 |
-
|
| 12 |
-
|
| 13 |
-
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
|
| 17 |
-
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
|
| 26 |
-
|
| 27 |
-
|
| 28 |
-
|
| 29 |
-
|
| 30 |
-
NeMo
|
| 31 |
-
OpenCLIP
|
| 32 |
-
PaddleNLP
|
| 33 |
-
RL-Baselines3-Zoo
|
| 34 |
-
Sample-Factory
|
| 35 |
-
SetFit
|
| 36 |
-
sentence-transformers
|
| 37 |
-
KerasNLP
|
| 38 |
-
vLLM
|
| 39 |
-
tinygrad
|
| 40 |
-
mesh-transformer-jax
|
| 41 |
-
TensorFlowTTS
|
|
|
|
| 1 |
+
# Hugging Face core libraries
|
| 2 |
transformers
|
|
|
|
|
|
|
| 3 |
huggingface_hub
|
|
|
|
|
|
|
| 4 |
accelerate
|
| 5 |
+
|
| 6 |
+
# Qwen Omni helper (handles multimodal processing)
|
| 7 |
+
qwen-omni-utils[decord]
|
| 8 |
+
|
| 9 |
+
# PyTorch (for model execution)
|
| 10 |
+
torch
|
| 11 |
+
torchvision
|
| 12 |
+
torchaudio
|
| 13 |
+
|
| 14 |
+
# UI with chat interface
|
| 15 |
+
gradio
|
| 16 |
+
|
| 17 |
+
# Audio file writing (used for speech output)
|
| 18 |
+
soundfile
|
| 19 |
+
|
| 20 |
+
# Video/audio decoding
|
| 21 |
+
ffmpeg-python
|
| 22 |
+
decord
|
| 23 |
+
moviepy
|
| 24 |
+
|
| 25 |
+
# Utility libraries
|
| 26 |
+
numpy
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|