Esempio n. 1
0
 //string forecastingConfidenceIntervalMinOutputColumnName, string forecastingConfidenceIntervalMaxOutputColumnName, int horizon, bool computeConfidenceIntervals
 internal SsaForecastingBaseWrapper(IHostEnvironment env, ModelLoadContext ctx, string name)
 {
     InternalTransform = new SsaForecastingBase(env, ctx, name);
 }
Esempio n. 2
0
 private protected override void InitializeForecaster()
 {
     _parentForecaster = (SsaForecastingBase)Parent;
     _model            = _parentForecaster.Model;
 }
Esempio n. 3
0
 internal SsaForecastingBaseWrapper(SsaForecastingOptions options, string name, IHostEnvironment env)
 {
     InternalTransform = new SsaForecastingBase(options, name, env, this);
 }