次の方法で共有


IntentRecognizer.AddIntent メソッド

定義

オーバーロード

AddIntent(String)

特定のユーザーの意図を示す、ユーザーが読み上げることができる単純なフレーズを追加します。

AddIntent(LanguageUnderstandingModel, String)

指定した Language Understanding Model から名前で 1 つの意図を追加します。 PatternMatchingModel 型と ConversationalLanguageUnderstandingModel 型の場合、有効にする前に既存のモデルがクリアされます。 これらの型の場合、intentName は無視されます。

AddIntent(String, String)

特定のユーザーの意図を示す、ユーザーが読み上げることができる単純なフレーズを追加します。

AddIntent(LanguageUnderstandingModel, String, String)

指定した Language Understanding Model から名前で 1 つの意図を追加します。 PatternMatchingModel 型と ConversationalLanguageUnderstandingModel 型の場合、有効にする前に既存のモデルがクリアされます。 これらの型では、intentName と intentId は無視されます。

AddIntent(String)

特定のユーザーの意図を示す、ユーザーが読み上げることができる単純なフレーズを追加します。

public void AddIntent (string simplePhrase);
member this.AddIntent : string -> unit
Public Sub AddIntent (simplePhrase As String)

パラメーター

simplePhrase
String

意図に対応するフレーズ。

注釈

認識されると、IntentRecognitionResult の IntentId プロパティは、ここで指定した simplePhrase と一致します。

適用対象

AddIntent(LanguageUnderstandingModel, String)

指定した Language Understanding Model から名前で 1 つの意図を追加します。 PatternMatchingModel 型と ConversationalLanguageUnderstandingModel 型の場合、有効にする前に既存のモデルがクリアされます。 これらの型の場合、intentName は無視されます。

public void AddIntent (Microsoft.CognitiveServices.Speech.Intent.LanguageUnderstandingModel model, string intentName);
member this.AddIntent : Microsoft.CognitiveServices.Speech.Intent.LanguageUnderstandingModel * string -> unit
Public Sub AddIntent (model As LanguageUnderstandingModel, intentName As String)

パラメーター

model
LanguageUnderstandingModel

意図を含む言語理解モデル。

intentName
String

言語理解モデルから含める 1 つの意図の名前。

注釈

認識されると、プロパティには IntentId ここで指定された intentName が含まれます。

適用対象

AddIntent(String, String)

特定のユーザーの意図を示す、ユーザーが読み上げることができる単純なフレーズを追加します。

public void AddIntent (string simplePhrase, string intentId);
member this.AddIntent : string * string -> unit
Public Sub AddIntent (simplePhrase As String, intentId As String)

パラメーター

simplePhrase
String

意図に対応するフレーズ。

intentId
String

プロパティで IntentId 返されるカスタム ID 文字列。

注釈

認識されると、結果の意図 ID は、ここで指定した ID と一致します。

適用対象

AddIntent(LanguageUnderstandingModel, String, String)

指定した Language Understanding Model から名前で 1 つの意図を追加します。 PatternMatchingModel 型と ConversationalLanguageUnderstandingModel 型の場合、有効にする前に既存のモデルがクリアされます。 これらの型では、intentName と intentId は無視されます。

public void AddIntent (Microsoft.CognitiveServices.Speech.Intent.LanguageUnderstandingModel model, string intentName, string intentId);
member this.AddIntent : Microsoft.CognitiveServices.Speech.Intent.LanguageUnderstandingModel * string * string -> unit
Public Sub AddIntent (model As LanguageUnderstandingModel, intentName As String, intentId As String)

パラメーター

model
LanguageUnderstandingModel

意図を含む言語理解モデル。

intentName
String

言語理解モデルから含める 1 つの意図の名前。

intentId
String

IntentRecognitionResult の IntentId プロパティで返されるカスタム ID 文字列。

適用対象