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