1 instantiation of PercentileThresholdTransform
Microsoft.ML.TimeSeries (1)
TimeSeriesProcessing.cs (1)
64var view = new PercentileThresholdTransform(h, input, input.Data);
24 references to PercentileThresholdTransform
Microsoft.ML.TimeSeries (24)
PercentileThresholdTransform.cs (14)
13[assembly: LoadableClass(PercentileThresholdTransform.Summary, typeof(PercentileThresholdTransform), typeof(PercentileThresholdTransform.Arguments), typeof(SignatureDataTransform), 14PercentileThresholdTransform.UserName, PercentileThresholdTransform.LoaderSignature, PercentileThresholdTransform.ShortName)] 15[assembly: LoadableClass(PercentileThresholdTransform.Summary, typeof(PercentileThresholdTransform), null, typeof(SignatureLoadDataTransform), 16PercentileThresholdTransform.UserName, PercentileThresholdTransform.LoaderSignature)] 24internal sealed class PercentileThresholdTransform : SequentialTransformBase<Single, bool, PercentileThresholdTransform.State> 62loaderAssemblyName: typeof(PercentileThresholdTransform).Assembly.FullName); 130private PercentileThresholdTransform _parent; 149_parent = (PercentileThresholdTransform)ParentTransform;
PValueTransform.cs (1)
126PercentileThresholdTransform.CountGreaterOrEqualValues(windowedBuffer, input, out count, out equalCount, out totalCount);
SequentialTransformBase.cs (2)
283Host.CheckNonEmpty(inputColumnName, nameof(PercentileThresholdTransform.Arguments.Source)); 284Host.CheckNonEmpty(outputColumnName, nameof(PercentileThresholdTransform.Arguments.Source));
SequentialTransformerBase.cs (2)
364Host.CheckNonEmpty(inputColumnName, nameof(PercentileThresholdTransform.Arguments.Source)); 365Host.CheckNonEmpty(outputColumnName, nameof(PercentileThresholdTransform.Arguments.Source));
TimeSeriesProcessing.cs (5)
58[TlcModule.EntryPoint(Desc = TimeSeries.PercentileThresholdTransform.Summary, 59UserName = TimeSeries.PercentileThresholdTransform.UserName, 60ShortName = TimeSeries.PercentileThresholdTransform.ShortName)] 61internal static CommonOutputs.TransformOutput PercentileThresholdTransform(IHostEnvironment env, PercentileThresholdTransform.Arguments input) 64var view = new PercentileThresholdTransform(h, input, input.Data);