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