3 instantiations of PingerArgument
Microsoft.ML.TimeSeries (3)
PredictionEngine.cs (3)
291_pinger(new PingerArgument() 308_pinger(new PingerArgument() 329_pinger(new PingerArgument()
30 references to PingerArgument
Microsoft.ML.TimeSeries (30)
PredictionEngine.cs (5)
37public abstract Action<PingerArgument> GetPinger(); 44Action<PingerArgument> CreatePinger(DataViewRow input, Func<int, bool> activeOutput, out Action disposer); 67private Action<PingerArgument> _pinger; 207internal Action<PingerArgument> CreatePinger(List<StatefulRow> rows) 211Action<PingerArgument> pinger = null;
SequentialAnomalyDetectionTransformBase.cs (5)
380public Action<PingerArgument> CreatePinger(DataViewRow input, Func<int, bool> activeOutput, out Action disposer) 383Action<PingerArgument> pinger = null; 390private Action<PingerArgument> MakePinger(DataViewRow input, AnomalyDetectionStateBase state) 394Action<PingerArgument> pinger = (PingerArgument args) =>
SequentialForecastingTransformBase.cs (5)
221public Action<PingerArgument> CreatePinger(DataViewRow input, Func<int, bool> activeOutput, out Action disposer) 224Action<PingerArgument> pinger = null; 231private Action<PingerArgument> MakePinger(DataViewRow input, ForecastingStateBase state) 235Action<PingerArgument> pinger = (PingerArgument args) =>
SequentialTransformerBase.cs (10)
624private readonly Action<PingerArgument> _pinger; 635public RowImpl(ColumnBindings bindings, DataViewRow input, Delegate[] getters, Action<PingerArgument> pinger, Action disposer) 674public override Action<PingerArgument> GetPinger() => 675_pinger as Action<PingerArgument> ?? throw Contracts.Except("Invalid TValue in GetPinger: '{0}'", typeof(PingerArgument)); 948private readonly Action<PingerArgument> _pinger; 960DataViewSchema schema, Delegate[] getters, Action<PingerArgument> pinger, Action disposer) 999public override Action<PingerArgument> GetPinger() => 1000_pinger as Action<PingerArgument> ?? throw Contracts.Except("Invalid TValue in GetPinger: '{0}'", typeof(PingerArgument));
SrCnnTransformBase.cs (5)
223public Action<PingerArgument> CreatePinger(DataViewRow input, Func<int, bool> activeOutput, out Action disposer) 226Action<PingerArgument> pinger = null; 233private Action<PingerArgument> MakePinger(DataViewRow input, SrCnnStateBase state) 237Action<PingerArgument> pinger = (PingerArgument args) =>