PredictionEngine<TSrc,TDst>.Predict(TSrc, TDst) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Run prediction pipeline on one 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)
Parameters
- example
- TSrc
The example to run on.
- prediction
- TDst
The object to store the prediction in. If it's null
, a new one will be created, otherwise the old one
is reused.