7 references to Predict
Microsoft.ML.TimeSeries (3)
PredictionEngine.cs (3)
347public override void Predict(TSrc example, ref TDst prediction) => Predict(example, ref prediction); 360Predict(example, ref dst, horizon, confidenceLevel); 372Predict(null, ref dst, horizon, confidenceLevel);
Microsoft.ML.TimeSeries.Tests (4)
TimeSeriesDirectApi.cs (4)
462engine.Predict(null, ref result, horizon: 5); 478engine.Predict(new Data(2), ref result); 506forecastEngineCopy.Predict(null, ref resultCopy, horizon: 5); 507engine.Predict(null, ref result, horizon: 5);