microsoft-cognitiveservices-speech-sdk
Version:
Microsoft Cognitive Services Speech SDK for JavaScript
17 lines (16 loc) • 650 B
TypeScript
import { SpeakerRecognitionModel } from "./SpeakerRecognitionModel.js";
import { VoiceProfile } from "./Exports.js";
/**
* Defines SpeakerIdentificationModel class for Speaker Recognition
* Model contains a set of profiles against which to identify speaker(s)
* @class SpeakerIdentificationModel
*/
export declare class SpeakerIdentificationModel implements SpeakerRecognitionModel {
private privVoiceProfiles;
private privProfileIds;
private constructor();
static fromProfiles(profiles: VoiceProfile[]): SpeakerIdentificationModel;
get voiceProfileIds(): string;
get profileIds(): string[];
get scenario(): string;
}