6116b1f3c6
Update API Documentation / build-api-docs (push) Has been cancelled
Add complete FunASR codebase including models, runtime, and documentation.
21 lines
623 B
Python
21 lines
623 B
Python
#!/usr/bin/env python3
|
|
# -*- encoding: utf-8 -*-
|
|
# Copyright FunASR (https://github.com/alibaba-damo-academy/FunASR). All Rights Reserved.
|
|
# MIT License (https://opensource.org/licenses/MIT)
|
|
|
|
from funasr import AutoModel
|
|
|
|
# Standalone speaker verification / embedding extraction
|
|
model = AutoModel(
|
|
model="iic/speech_eres2netv2_sv_zh-cn_16k-common",
|
|
device="cuda:0",
|
|
)
|
|
|
|
# Extract speaker embedding
|
|
res = model.generate(
|
|
input="https://isv-data.oss-cn-hangzhou.aliyuncs.com/ics/MaaS/ASR/test_audio/asr_example_zh.wav",
|
|
)
|
|
|
|
embedding = res[0]["spk_embedding"]
|
|
print(f"Speaker embedding shape: {embedding.shape}")
|