IntentModel クラス

  • java.lang.Object
    • com.microsoft.azure.cognitiveservices.language.luis.runtime.models.IntentModel

public class IntentModel

発話から検出された意図。

メソッドの概要

修飾子と型 メソッドと説明
String intent()

意図の値を取得します。

Double score()

スコア値を取得します。

IntentModel withIntent(String intent)

意図の値を設定します。

IntentModel withScore(Double score)

スコア値を設定します。

メソッドの詳細

intent

public String intent()

意図の値を取得します。

Returns:

意図の値

score

public Double score()

スコア値を取得します。

Returns:

スコア値

withIntent

public IntentModel withIntent(String intent)

意図の値を設定します。

Parameters:

intent - 設定する意図値

Returns:

IntentModel オブジェクト自体。

withScore

public IntentModel withScore(Double score)

スコア値を設定します。

Parameters:

score - 設定するスコア値

Returns:

IntentModel オブジェクト自体。

適用対象