次の方法で共有


TimeSeriesPredictionEngine<TSrc,TDst>.Predict メソッド

定義

オーバーロード

Predict(Nullable<Int32>, Nullable<Single>)

予測のみのタスク。

Predict(TSrc, TDst)

予測を実行します。 予測の場合、タスク example のみを null のままにできます。 null でない場合 example は、予測モデルを新しいオーバーベーションで更新するために使用できます。 異常検出の場合、モデルは常に .example

Predict(TSrc, Nullable<Int32>, Nullable<Single>)

予測を実行します。 予測の場合、タスク example のみを null のままにできます。 null でない場合 example は、予測モデルを新しいオーバーベーションで更新するために使用できます。

Predict(TSrc, TDst, Nullable<Int32>, Nullable<Single>)

予測を実行します。 予測の場合、タスク example のみを null のままにできます。 null でない場合 example は、予測モデルを新しいオーバーベーションで更新するために使用できます。 異常検出の場合、モデルは常に .example

Predict(Nullable<Int32>, Nullable<Single>)

予測のみのタスク。

public TDst Predict (int? horizon = default, float? confidenceLevel = default);
override this.Predict : Nullable<int> * Nullable<single> -> 'Dst
Public Function Predict (Optional horizon As Nullable(Of Integer) = Nothing, Optional confidenceLevel As Nullable(Of Single) = Nothing) As TDst

パラメーター

horizon
Nullable<Int32>

予測する値の数。

confidenceLevel
Nullable<Single>

予測の信頼レベル。

戻り値

TDst

適用対象

Predict(TSrc, TDst)

予測を実行します。 予測の場合、タスク example のみを null のままにできます。 null でない場合 example は、予測モデルを新しいオーバーベーションで更新するために使用できます。 異常検出の場合、モデルは常に .example

public override void Predict (TSrc example, ref TDst prediction);
override this.Predict : 'Src * 'Dst -> unit
Public Overrides Sub Predict (example As TSrc, ByRef prediction As TDst)

パラメーター

example
TSrc

予測エンジンへの入力。

prediction
TDst

エンジンからの予測/予測。

適用対象

Predict(TSrc, Nullable<Int32>, Nullable<Single>)

予測を実行します。 予測の場合、タスク example のみを null のままにできます。 null でない場合 example は、予測モデルを新しいオーバーベーションで更新するために使用できます。

public TDst Predict (TSrc example, int? horizon = default, float? confidenceLevel = default);
override this.Predict : 'Src * Nullable<int> * Nullable<single> -> 'Dst
Public Function Predict (example As TSrc, Optional horizon As Nullable(Of Integer) = Nothing, Optional confidenceLevel As Nullable(Of Single) = Nothing) As TDst

パラメーター

example
TSrc

予測エンジンへの入力。

horizon
Nullable<Int32>

予測する値の数。

confidenceLevel
Nullable<Single>

予測の信頼レベル。

戻り値

TDst

モデルの更新後の予測/予測 example

適用対象

Predict(TSrc, TDst, Nullable<Int32>, Nullable<Single>)

予測を実行します。 予測の場合、タスク example のみを null のままにできます。 null でない場合 example は、予測モデルを新しいオーバーベーションで更新するために使用できます。 異常検出の場合、モデルは常に .example

public void Predict (TSrc example, ref TDst prediction, int? horizon = default, float? confidenceLevel = default);
override this.Predict : 'Src * 'Dst * Nullable<int> * Nullable<single> -> unit
Public Sub Predict (example As TSrc, ByRef prediction As TDst, Optional horizon As Nullable(Of Integer) = Nothing, Optional confidenceLevel As Nullable(Of Single) = Nothing)

パラメーター

example
TSrc

予測エンジンへの入力。

prediction
TDst

エンジンからの予測/予測。

horizon
Nullable<Int32>

予測する値の数を示すために使用されます。

confidenceLevel
Nullable<Single>

信頼度の予測モデルで使用されます。

適用対象