次の方法で共有


IntentsSuggestionExample クラス

  • java.lang.Object
    • com.microsoft.azure.cognitiveservices.language.luis.authoring.models.IntentsSuggestionExample

public class IntentsSuggestionExample

予測された意図または提案された意図。

メソッドの概要

修飾子と型 メソッドと説明
List<EntityPrediction> entityPredictions()

entityPredictions 値を取得します。

List<IntentPrediction> intentPredictions()

intentPredictions 値を取得します。

String text()

テキスト値を取得します。

List<String> tokenizedText()

tokenizedText 値を取得します。

IntentsSuggestionExample withEntityPredictions(List<EntityPrediction> entityPredictions)

entityPredictions 値を設定します。

IntentsSuggestionExample withIntentPredictions(List<IntentPrediction> intentPredictions)

intentPredictions 値を設定します。

IntentsSuggestionExample withText(String text)

テキスト値を設定します。

IntentsSuggestionExample withTokenizedText(List<String> tokenizedText)

tokenizedText 値を設定します。

メソッドの詳細

entityPredictions

public List entityPredictions()

entityPredictions 値を取得します。

Returns:

entityPredictions 値

intentPredictions

public List intentPredictions()

intentPredictions 値を取得します。

Returns:

intentPredictions 値

text

public String text()

テキスト値を取得します。

Returns:

テキスト値

tokenizedText

public List tokenizedText()

tokenizedText 値を取得します。

Returns:

tokenizedText 値

withEntityPredictions

public IntentsSuggestionExample withEntityPredictions(List entityPredictions)

entityPredictions 値を設定します。

Parameters:

entityPredictions - 設定する entityPredictions 値

Returns:

IntentsSuggestionExample オブジェクト自体。

withIntentPredictions

public IntentsSuggestionExample withIntentPredictions(List intentPredictions)

intentPredictions 値を設定します。

Parameters:

intentPredictions - 設定する intentPredictions 値

Returns:

IntentsSuggestionExample オブジェクト自体。

withText

public IntentsSuggestionExample withText(String text)

テキスト値を設定します。

Parameters:

text - 設定するテキスト値

Returns:

IntentsSuggestionExample オブジェクト自体。

withTokenizedText

public IntentsSuggestionExample withTokenizedText(List tokenizedText)

tokenizedText 値を設定します。

Parameters:

tokenizedText - 設定する tokenizedText 値

Returns:

IntentsSuggestionExample オブジェクト自体。

適用対象