2 instantiations of IidAnomalyDetectionBase
Microsoft.ML.TimeSeries (2)
IidAnomalyDetectionBase.cs (2)
85InternalTransform = new IidAnomalyDetectionBase(args, name, env, this); 90InternalTransform = new IidAnomalyDetectionBase(env, ctx, name, this);
5 references to IidAnomalyDetectionBase
Microsoft.ML.TimeSeries (5)
IidAnomalyDetectionBase.cs (3)
14/// The is the wrapper to <see cref="IidAnomalyDetectionBase"/> that computes the p-values and martingale scores for a supposedly i.i.d input sequence of floats. In other words, it assumes 81internal IidAnomalyDetectionBase InternalTransform; 97internal class IidAnomalyDetectionBase : SequentialAnomalyDetectionTransformBase<Single, IidAnomalyDetectionBase.State>
IidChangePointDetector.cs (1)
113clone.InternalTransform.StateRef = (IidAnomalyDetectionBase.State)clone.InternalTransform.StateRef.Clone();
IidSpikeDetector.cs (1)
109clone.InternalTransform.StateRef = (IidAnomalyDetectionBase.State)clone.InternalTransform.StateRef.Clone();