2 instantiations of SsaForecastingEstimator
Microsoft.ML.TimeSeries (2)
ExtensionsCatalog.cs (1)
480new SsaForecastingEstimator(CatalogUtils.GetEnvironment(catalog), outputColumnName, inputColumnName, windowSize, seriesLength, trainSize,
TimeSeriesProcessing.cs (1)
134var view = new SsaForecastingEstimator(h, options).Fit(options.Data).Transform(options.Data);
7 references to SsaForecastingEstimator
Microsoft.ML.Samples (2)
Dynamic\Transforms\TimeSeries\Forecasting.cs (1)
49var model = ml.Forecasting.ForecastBySsa(outputColumnName,
Dynamic\Transforms\TimeSeries\ForecastingWithConfidenceInterval.cs (1)
49var model = ml.Forecasting.ForecastBySsa(outputColumnName,
Microsoft.ML.TimeSeries (4)
ExtensionsCatalog.cs (1)
475public static SsaForecastingEstimator ForecastBySsa(
SSaForecasting.cs (3)
27/// <see cref="ITransformer"/> resulting from fitting a <see cref="SsaForecastingEstimator"/>. 238/// Create a new instance of <see cref="SsaForecastingEstimator"/> 307_host = env.Register(nameof(SsaForecastingEstimator));
Microsoft.ML.TimeSeries.Tests (1)
TimeSeriesEstimatorTests.cs (1)
98var pipe = new SsaForecastingEstimator(Env, "Forecast", "Value", 10, 11, 22, 4,