次の方法で共有


EntitiesSuggestionExample クラス

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

public class EntitiesSuggestionExample

予測されたエンティティまたは提案されたエンティティ。

メソッドの概要

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

entityPredictions 値を取得します。

List<IntentPrediction> intentPredictions()

intentPredictions 値を取得します。

String text()

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

List<String> tokenizedText()

tokenizedText 値を取得します。

EntitiesSuggestionExample withEntityPredictions(List<EntityPrediction> entityPredictions)

entityPredictions 値を設定します。

EntitiesSuggestionExample withIntentPredictions(List<IntentPrediction> intentPredictions)

intentPredictions 値を設定します。

EntitiesSuggestionExample withText(String text)

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

EntitiesSuggestionExample 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 EntitiesSuggestionExample withEntityPredictions(List entityPredictions)

entityPredictions 値を設定します。

Parameters:

entityPredictions - 設定する entityPredictions 値

Returns:

EntitiesSuggestionExample オブジェクト自体。

withIntentPredictions

public EntitiesSuggestionExample withIntentPredictions(List intentPredictions)

intentPredictions 値を設定します。

Parameters:

intentPredictions - 設定する intentPredictions 値

Returns:

EntitiesSuggestionExample オブジェクト自体。

withText

public EntitiesSuggestionExample withText(String text)

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

Parameters:

text - 設定するテキスト値

Returns:

EntitiesSuggestionExample オブジェクト自体。

withTokenizedText

public EntitiesSuggestionExample withTokenizedText(List tokenizedText)

tokenizedText 値を設定します。

Parameters:

tokenizedText - 設定する tokenizedText 値

Returns:

EntitiesSuggestionExample オブジェクト自体。

適用対象