1 instantiation of GroupBinding
Microsoft.ML.Transforms (1)
GroupTransform.cs (1)
136_groupBinding = new GroupBinding(input.Schema, host, ctx);
8 references to GroupBinding
Microsoft.ML.Transforms (8)
GroupTransform.cs (8)
96private readonly GroupBinding _groupBinding; 182/// <see cref="GroupBinding._inputSchema"/>, and output <see cref="DataViewSchema"/>, <see cref="GroupBinding.OutputSchema"/>. 184/// The <see cref="GroupBinding.OutputSchema"/> contains columns used to group columns and columns being aggregated from input data. 185/// In <see cref="GroupBinding.OutputSchema"/>, group columns are followed by aggregated columns. For example, if column "Age" is used to group "UserId" column, 186/// the first column and the second column in <see cref="GroupBinding.OutputSchema"/> produced by <see cref="GroupTransform"/> would be "Age" and "UserId," respectively. 191/// <see cref="GroupBinding.BuildOutputSchema(DataViewSchema)"/> how this idea got implemented. 521var binding = _parent._groupBinding;