2 writes to OutputSchema
Microsoft.ML.Transforms (2)
GroupTransform.cs (2)
233
OutputSchema
= BuildOutputSchema(inputSchema);
269
OutputSchema
= BuildOutputSchema(inputSchema);
9 references to OutputSchema
Microsoft.ML.Transforms (9)
GroupTransform.cs (9)
156
public override DataViewSchema OutputSchema => _groupBinding.
OutputSchema
;
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.
368
/// Determine if output column index is valid to <see cref="
OutputSchema
"/>. A valid output column index should be greater than or
371
/// <param name="col">Column index of <see cref="
OutputSchema
"/></param>
522
_active = Utils.BuildArray(binding.
OutputSchema
.Count, predicate);
657
return _trailingCursor.GetGetter<TValue>(_parent._groupBinding.
OutputSchema
[groupIndex]);