You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add --vad-model and --spk-model CLI args to serve_vllm.py
Allow custom local paths or alternative model names for VAD and
speaker models. Set --spk-model to empty string to disable speaker
model loading. Fixes#2964.
parser.add_argument("--vad-model", type=str, default="fsmn-vad", help="VAD model name or local path")
411
+
parser.add_argument("--spk-model", type=str, default="iic/speech_eres2netv2_sv_zh-cn_16k-common", help="Speaker model name or local path (set empty to disable)")
0 commit comments