KeywordRecognitionModel.FromConfig Method

Definition

Overloads

FromConfig(EmbeddedSpeechConfig)

Creates a keyword recognition model using the specified embedded speech config.

FromConfig(EmbeddedSpeechConfig, String[])

Creates a keyword recognition model using the specified embedded speech config and user-defined wake words.

FromConfig(EmbeddedSpeechConfig)

Creates a keyword recognition model using the specified embedded speech config.

public static Microsoft.CognitiveServices.Speech.KeywordRecognitionModel FromConfig (Microsoft.CognitiveServices.Speech.EmbeddedSpeechConfig embeddedSpeechConfig);
static member FromConfig : Microsoft.CognitiveServices.Speech.EmbeddedSpeechConfig -> Microsoft.CognitiveServices.Speech.KeywordRecognitionModel
Public Shared Function FromConfig (embeddedSpeechConfig As EmbeddedSpeechConfig) As KeywordRecognitionModel

Parameters

embeddedSpeechConfig
EmbeddedSpeechConfig

Embedded speech config.

Returns

The keyword recognition model.

Applies to

FromConfig(EmbeddedSpeechConfig, String[])

Creates a keyword recognition model using the specified embedded speech config and user-defined wake words.

public static Microsoft.CognitiveServices.Speech.KeywordRecognitionModel FromConfig (Microsoft.CognitiveServices.Speech.EmbeddedSpeechConfig embeddedSpeechConfig, string[] userDefinedWakeWords);
static member FromConfig : Microsoft.CognitiveServices.Speech.EmbeddedSpeechConfig * string[] -> Microsoft.CognitiveServices.Speech.KeywordRecognitionModel
Public Shared Function FromConfig (embeddedSpeechConfig As EmbeddedSpeechConfig, userDefinedWakeWords As String()) As KeywordRecognitionModel

Parameters

embeddedSpeechConfig
EmbeddedSpeechConfig

Embedded speech config.

userDefinedWakeWords
String[]

User-defined wake words.

Returns

The keyword recognition model.

Applies to