1 type derived from CountAggregator
Microsoft.ML.Transforms (1)
CountFeatureSelection.cs (1)
382private sealed class CountAggregator<T> : CountAggregator, IColumnAggregator<VBuffer<T>>
9 references to CountAggregator
Microsoft.ML.Transforms (9)
CountFeatureSelection.cs (9)
322var aggregators = new CountAggregator[size]; 352private static CountAggregator GetOneAggregator(DataViewRow row, DataViewType colType, int colSrc) 354Func<DataViewRow, DataViewType, int, CountAggregator> del = GetOneAggregator<int>; 356return (CountAggregator)methodInfo.Invoke(null, new object[] { row, colType, colSrc }); 359private static CountAggregator GetOneAggregator<T>(DataViewRow row, DataViewType colType, int colSrc) 364private static CountAggregator GetVecAggregator(DataViewRow row, VectorDataViewType colType, int colSrc) 366Func<DataViewRow, VectorDataViewType, int, CountAggregator> del = GetVecAggregator<int>; 368return (CountAggregator)methodInfo.Invoke(null, new object[] { row, colType, colSrc }); 371private static CountAggregator GetVecAggregator<T>(DataViewRow row, VectorDataViewType colType, int colSrc)