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