4 instantiations of SsaForecastingTransformer
Microsoft.ML.TimeSeries (4)
SSaForecasting.cs (4)
141return new SsaForecastingTransformer(env, options, input).MakeDataTransform(input); 157return new SsaForecastingTransformer(env, ctx).MakeDataTransform(input); 176return new SsaForecastingTransformer(env, ctx); 321return new SsaForecastingTransformer(_host, _options, input);
35 references to SsaForecastingTransformer
Microsoft.ML.Samples (2)
Dynamic\Transforms\TimeSeries\Forecasting.cs (1)
53var transformer = model.Fit(dataView);
Dynamic\Transforms\TimeSeries\ForecastingWithConfidenceInterval.cs (1)
56var transformer = model.Fit(dataView);
Microsoft.ML.TimeSeries (30)
SSaForecasting.cs (26)
12[assembly: LoadableClass(SsaForecastingTransformer.Summary, typeof(IDataTransform), typeof(SsaForecastingTransformer), typeof(SsaForecastingTransformer.Options), typeof(SignatureDataTransform), 13SsaForecastingTransformer.UserName, SsaForecastingTransformer.LoaderSignature, SsaForecastingTransformer.ShortName)] 15[assembly: LoadableClass(SsaForecastingTransformer.Summary, typeof(IDataTransform), typeof(SsaForecastingTransformer), null, typeof(SignatureLoadDataTransform), 16SsaForecastingTransformer.UserName, SsaForecastingTransformer.LoaderSignature)] 18[assembly: LoadableClass(SsaForecastingTransformer.Summary, typeof(SsaForecastingTransformer), null, typeof(SignatureLoadModel), 19SsaForecastingTransformer.UserName, SsaForecastingTransformer.LoaderSignature)] 21[assembly: LoadableClass(typeof(IRowMapper), typeof(SsaForecastingTransformer), null, typeof(SignatureLoadRowMapper), 22SsaForecastingTransformer.UserName, SsaForecastingTransformer.LoaderSignature)] 125loaderAssemblyName: typeof(SsaForecastingTransformer).Assembly.FullName); 162var clone = (SsaForecastingTransformer)MemberwiseClone(); 170internal static SsaForecastingTransformer Create(IHostEnvironment env, ModelLoadContext ctx) 232public sealed class SsaForecastingEstimator : IEstimator<SsaForecastingTransformer> 235private readonly SsaForecastingTransformer.Options _options; 280: this(env, new SsaForecastingTransformer.Options 304internal SsaForecastingEstimator(IHostEnvironment env, SsaForecastingTransformer.Options options) 318public SsaForecastingTransformer Fit(IDataView input)
TimeSeriesProcessing.cs (4)
128[TlcModule.EntryPoint(Desc = TimeSeries.SsaForecastingTransformer.Summary, 129UserName = TimeSeries.SsaForecastingTransformer.UserName, 130ShortName = TimeSeries.SsaForecastingTransformer.ShortName)] 131internal static CommonOutputs.TransformOutput SsaForecasting(IHostEnvironment env, SsaForecastingTransformer.Options options)
Microsoft.ML.TimeSeries.Tests (3)
TimeSeriesDirectApi.cs (3)
362var args = new SsaForecastingTransformer.Options() 384var detector = new SsaForecastingEstimator(env, args).Fit(dataView); 427var args = new SsaForecastingTransformer.Options()