TimeSeriesPredictionEngine<TSrc,TDst>.Predict 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Predict(Nullable<Int32>, Nullable<Single>) |
僅預測工作。 |
Predict(TSrc, TDst) |
執行預測。 在預測時,只能 |
Predict(TSrc, Nullable<Int32>, Nullable<Single>) |
執行預測。 在預測時,只能 |
Predict(TSrc, TDst, Nullable<Int32>, Nullable<Single>) |
執行預測。 在預測時,只能 |
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
參數
傳回
適用於
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
預測引擎的輸入。
傳回
模型更新後的預測/預測 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
來自引擎的預測/預測。