2 instantiations of State
Microsoft.ML.TimeSeries (2)
SsaAnomalyDetectionBase.cs (2)
207StateRef = new State(); 238StateRef = new State(ctx.Reader);
7 references to State
Microsoft.ML.TimeSeries (7)
SsaAnomalyDetectionBase.cs (5)
181internal sealed class SsaAnomalyDetectionBase : SequentialAnomalyDetectionTransformBase<float, SsaAnomalyDetectionBase.State> 316private protected override void CloneCore(State state) 319Contracts.Assert(state is State); 320var stateLocal = state as State;
SsaChangePointDetector.cs (1)
123clone.InternalTransform.StateRef = (SsaAnomalyDetectionBase.State)clone.InternalTransform.StateRef.Clone();
SsaSpikeDetector.cs (1)
136clone.InternalTransform.StateRef = (SsaAnomalyDetectionBase.State)clone.InternalTransform.StateRef.Clone();