5 instantiations of IidChangePointDetector
Microsoft.ML.TimeSeries (5)
IidChangePointDetector.cs (5)
107
return new
IidChangePointDetector
(env, options).MakeDataTransform(input);
145
return new
IidChangePointDetector
(env, ctx).MakeDataTransform(input);
155
return new
IidChangePointDetector
(env, ctx);
239
new
IidChangePointDetector
(env, new IidChangePointDetector.Options
253
new
IidChangePointDetector
(env, options))
33 references to IidChangePointDetector
Microsoft.ML.TimeSeries (30)
IidChangePointDetector.cs (26)
14
[assembly: LoadableClass(
IidChangePointDetector
.Summary, typeof(IDataTransform), typeof(
IidChangePointDetector
), typeof(
IidChangePointDetector
.Options), typeof(SignatureDataTransform),
15
IidChangePointDetector
.UserName,
IidChangePointDetector
.LoaderSignature,
IidChangePointDetector
.ShortName)]
17
[assembly: LoadableClass(
IidChangePointDetector
.Summary, typeof(IDataTransform), typeof(
IidChangePointDetector
), null, typeof(SignatureLoadDataTransform),
18
IidChangePointDetector
.UserName,
IidChangePointDetector
.LoaderSignature)]
20
[assembly: LoadableClass(
IidChangePointDetector
.Summary, typeof(
IidChangePointDetector
), null, typeof(SignatureLoadModel),
21
IidChangePointDetector
.UserName,
IidChangePointDetector
.LoaderSignature)]
23
[assembly: LoadableClass(typeof(IRowMapper), typeof(
IidChangePointDetector
), null, typeof(SignatureLoadRowMapper),
24
IidChangePointDetector
.UserName,
IidChangePointDetector
.LoaderSignature)]
77
public BaseArguments(
IidChangePointDetector
transform)
97
loaderAssemblyName: typeof(
IidChangePointDetector
).Assembly.FullName);
112
var
clone = (
IidChangePointDetector
)MemberwiseClone();
149
internal static
IidChangePointDetector
Create(IHostEnvironment env, ModelLoadContext ctx)
168
private IidChangePointDetector(IHostEnvironment env,
IidChangePointDetector
transform)
223
public sealed class IidChangePointEstimator : TrivialEstimator<
IidChangePointDetector
>
239
new IidChangePointDetector(env, new
IidChangePointDetector
.Options
251
internal IidChangePointEstimator(IHostEnvironment env,
IidChangePointDetector
.Options options)
TimeSeriesProcessing.cs (4)
30
[TlcModule.EntryPoint(Desc = TimeSeries.
IidChangePointDetector
.Summary,
31
UserName = TimeSeries.
IidChangePointDetector
.UserName,
32
ShortName = TimeSeries.
IidChangePointDetector
.ShortName)]
33
internal static CommonOutputs.TransformOutput IidChangePointDetector(IHostEnvironment env,
IidChangePointDetector
.Options options)
Microsoft.ML.TimeSeries.Tests (3)
TimeSeriesDirectApi.cs (2)
120
var args = new
IidChangePointDetector
.Options()
128
var
detector = new IidChangePointEstimator(env, args).Fit(dataView);
TimeSeriesSimpleApiTests.cs (1)
55
var
detector = learningPipeline.Fit(dataView);