TimeSeriesPredictionEngine<TSrc,TDst>.Predict 方法

定義

多載

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

僅預測工作。

Predict(TSrc, TDst)

執行預測。 在預測時,只能 example 將工作保留為 Null。 如果 example 不是 Null,則它可以用來使用新的 Obervation 來更新預測模型。 針對異常偵測,模型一律會更新為 example

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

執行預測。 在預測時,只能 example 將工作保留為 Null。 如果 example 不是 Null,則它可以用來使用新的 Obervation 來更新預測模型。

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

執行預測。 在預測時,只能 example 將工作保留為 Null。 如果 example 不是 Null,則它可以用來使用新的 Obervation 來更新預測模型。 針對異常偵測,模型一律會更新為 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。 如果 example 不是 Null,則它可以用來使用新的 Obervation 來更新預測模型。 針對異常偵測,模型一律會更新為 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。 如果 example 不是 Null,則它可以用來使用新的 Obervation 來更新預測模型。

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。 如果 example 不是 Null,則它可以用來使用新的 Obervation 來更新預測模型。 針對異常偵測,模型一律會更新為 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>

用於預測模型以取得信賴度。

適用於