次の方法で共有


IntentPrediction クラス

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

public class IntentPrediction

提案された意図。

メソッドの概要

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

名前の値を取得します。

Double score()

スコア値を取得します。

IntentPrediction withName(String name)

名前の値を設定します。

IntentPrediction withScore(Double score)

スコア値を設定します。

メソッドの詳細

name

public String name()

名前の値を取得します。

Returns:

名前の値

score

public Double score()

スコア値を取得します。

Returns:

スコア値

withName

public IntentPrediction withName(String name)

名前の値を設定します。

Parameters:

name - 設定する名前の値

Returns:

IntentPrediction オブジェクト自体。

withScore

public IntentPrediction withScore(Double score)

スコア値を設定します。

Parameters:

score - 設定するスコア値

Returns:

IntentPrediction オブジェクト自体。

適用対象