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