2 instantiations of State
Microsoft.ML.TimeSeries (2)
SsaForecastingBase.cs (2)
142StateRef = new State(); 162StateRef = new State(ctx.Reader);
6 references to State
Microsoft.ML.TimeSeries (6)
SSaForecasting.cs (1)
164clone.InternalTransform.StateRef = (SsaForecastingBase.State)clone.InternalTransform.StateRef.Clone();
SsaForecastingBase.cs (5)
121internal sealed class SsaForecastingBase : SequentialForecastingTransformBase<float, SsaForecastingBase.State> 234private protected override void CloneCore(State state) 237Contracts.Assert(state is State); 238var stateLocal = state as State;