Views
No views yet
🎙️ Input: Raw Speech Audio ➔ 📊 Output: 14-Dimension Fine-Grained Speech Attributes (Structured JSON)
1conda create -n fmspeech python=3.12
2conda activate fmspeech1# Install vLLM (Specifically version 0.13.0)
2pip install vllm==0.13.0
3# Note: If you meet an "Undefined symbol" error while using VLLM_USE_PRECOMPILED=1,
4# please use "pip install -e . -v" to build vLLM from source.
5
6# Install Transformers and Accelerate
7pip install transformers==4.57.3
8pip install accelerate
9
10# Install Qwen Omni utilities and Flash Attention
11pip install qwen-omni-utils -U
12pip install -U flash-attn --no-build-isolationpython infer.pyinfer.py in our repository for detailed loading and inference examples).