【发布时间】:2021-03-05 10:33:21
【问题描述】:
我使用cognitive speech sdk sample 创建了一个 Speaker Recognition profiler,它工作正常,结果分数是 0.8,然后我想重用 profile,但分数总是 0。 我哪里错了?
void TextIndependentVerification(shared_ptr<VoiceProfileClient> client, shared_ptr<SpeakerRecognizer> recognizer)
{
std::cout << "Text Independent Verification:\n\n";
auto profile = VoiceProfile::FromId("3b32c3dc-a974-497f-b6af-7cda3b607751");
std::cout << "Created profile ID: " << profile->GetId() << "\n";
SpeakerVerify(profile, recognizer);
}
【问题讨论】: