2 instantiations of State
Microsoft.ML.TimeSeries (2)
IidAnomalyDetectionBase.cs (2)
105StateRef = new State(); 114StateRef = new State(ctx.Reader);
7 references to State
Microsoft.ML.TimeSeries (7)
IidAnomalyDetectionBase.cs (5)
97internal class IidAnomalyDetectionBase : SequentialAnomalyDetectionTransformBase<Single, IidAnomalyDetectionBase.State> 169private protected override void CloneCore(State state) 172Contracts.Assert(state is State); 173var stateLocal = state as 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();