1 write to _aggregators
Microsoft.ML.Transforms (1)
GroupTransform.cs (1)
550
_aggregators
= new KeepColumnAggregator[_parent._groupBinding.KeepColumnIndexes.Length];
6 references to _aggregators
Microsoft.ML.Transforms (6)
GroupTransform.cs (6)
551
for (int i = 0; i <
_aggregators
.Length; i++)
554
_aggregators
[i] = KeepColumnAggregator.Create(_trailingCursor, _parent._groupBinding.KeepColumnIndexes[i]);
599
foreach (var agg in
_aggregators
.Where(x => x != null))
607
foreach (var agg in
_aggregators
.Where(x => x != null))
660
Ch.AssertValue(
_aggregators
[column.Index - _groupCount]);
661
return
_aggregators
[column.Index - _groupCount].GetGetter<TValue>(Ch);