2 writes to OutputSchema
Microsoft.ML.Transforms (2)
GroupTransform.cs (2)
233OutputSchema = BuildOutputSchema(inputSchema); 269OutputSchema = BuildOutputSchema(inputSchema);
9 references to OutputSchema
Microsoft.ML.Transforms (9)
GroupTransform.cs (9)
156public 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); 657return _trailingCursor.GetGetter<TValue>(_parent._groupBinding.OutputSchema[groupIndex]);