Upload speaker embedding models to huggingface (#1428)

See also
https://huggingface.co/spaces/k2-fsa/speaker-diarization
This commit is contained in:
Fangjun Kuang
2024-10-14 16:20:00 +08:00
committed by GitHub
parent 99f320b893
commit df4150dc5d
6 changed files with 95 additions and 15 deletions

View File

@@ -4,10 +4,10 @@ set -e
function install_3d_speaker() {
echo "Install 3D-Speaker"
git clone https://github.com/alibaba-damo-academy/3D-Speaker.git
git clone https://github.com/modelscope/3D-Speaker
pushd 3D-Speaker
pip install -q -r ./requirements.txt
pip install -q modelscope onnx onnxruntime kaldi-native-fbank
pip install -q modelscope==1.14.0 onnx onnxruntime kaldi-native-fbank
popd
}