次の方法で共有


LabeledUtterance クラス

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

public class LabeledUtterance

例の予測とラベルのペア。

メソッドの概要

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

entityLabels 値を取得します。

List<EntityPrediction> entityPredictions()

entityPredictions 値を取得します。

Integer id()

id 値を取得します。

String intentLabel()

intentLabel 値を取得します。

List<IntentPrediction> intentPredictions()

intentPredictions 値を取得します。

String text()

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

List<String> tokenizedText()

tokenizedText 値を取得します。

LabeledUtterance withEntityLabels(List<EntityLabel> entityLabels)

entityLabels 値を設定します。

LabeledUtterance withEntityPredictions(List<EntityPrediction> entityPredictions)

entityPredictions 値を設定します。

LabeledUtterance withId(Integer id)

id 値を設定します。

LabeledUtterance withIntentLabel(String intentLabel)

intentLabel 値を設定します。

LabeledUtterance withIntentPredictions(List<IntentPrediction> intentPredictions)

intentPredictions 値を設定します。

LabeledUtterance withText(String text)

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

LabeledUtterance withTokenizedText(List<String> tokenizedText)

tokenizedText 値を設定します。

メソッドの詳細

entityLabels

public List entityLabels()

entityLabels 値を取得します。

Returns:

entityLabels 値

entityPredictions

public List entityPredictions()

entityPredictions 値を取得します。

Returns:

entityPredictions 値

id

public Integer id()

id 値を取得します。

Returns:

id 値

intentLabel

public String intentLabel()

intentLabel 値を取得します。

Returns:

intentLabel 値

intentPredictions

public List intentPredictions()

intentPredictions 値を取得します。

Returns:

intentPredictions 値

text

public String text()

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

Returns:

テキスト値

tokenizedText

public List tokenizedText()

tokenizedText 値を取得します。

Returns:

tokenizedText 値

withEntityLabels

public LabeledUtterance withEntityLabels(List entityLabels)

entityLabels 値を設定します。

Parameters:

entityLabels - 設定する entityLabels 値

Returns:

LabeledUtterance オブジェクト自体。

withEntityPredictions

public LabeledUtterance withEntityPredictions(List entityPredictions)

entityPredictions 値を設定します。

Parameters:

entityPredictions - 設定する entityPredictions 値

Returns:

LabeledUtterance オブジェクト自体。

withId

public LabeledUtterance withId(Integer id)

id 値を設定します。

Parameters:

id - 設定する id 値

Returns:

LabeledUtterance オブジェクト自体。

withIntentLabel

public LabeledUtterance withIntentLabel(String intentLabel)

intentLabel 値を設定します。

Parameters:

intentLabel - 設定する intentLabel 値

Returns:

LabeledUtterance オブジェクト自体。

withIntentPredictions

public LabeledUtterance withIntentPredictions(List intentPredictions)

intentPredictions 値を設定します。

Parameters:

intentPredictions - 設定する intentPredictions 値

Returns:

LabeledUtterance オブジェクト自体。

withText

public LabeledUtterance withText(String text)

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

Parameters:

text - 設定するテキスト値

Returns:

LabeledUtterance オブジェクト自体。

withTokenizedText

public LabeledUtterance withTokenizedText(List tokenizedText)

tokenizedText 値を設定します。

Parameters:

tokenizedText - 設定する tokenizedText 値

Returns:

LabeledUtterance オブジェクト自体。

適用対象