8 references to Group
Microsoft.ML.Core (4)
Data\RoleMappedSchema.cs (4)
140/// The <see cref="ColumnRole.Group"/> column, when there is exactly one (null otherwise). 363yield return ColumnRole.Group.Bind(group); 382/// <param name="group">The column name that will be mapped to the <see cref="ColumnRole.Group"/> role</param> 468/// <param name="group">The column name that will be mapped to the <see cref="RoleMappedSchema.ColumnRole.Group"/> role</param>
Microsoft.ML.Data (2)
Evaluators\RankingEvaluator.cs (2)
261RoleMappedSchema.ColumnRole.Group.Bind(groupId), 897return cols.Prepend(RoleMappedSchema.ColumnRole.Group.Bind(groupIdCol));
Microsoft.ML.EntryPoints (2)
CrossValidationMacro.cs (1)
368RoleMappedSchema.ColumnRole.Group.Bind(input.GroupColumn),
PermutationFeatureImportance.cs (1)
261var groupIdColumnName = roles.Where(x => x.Key.Value == RoleMappedSchema.ColumnRole.Group.Value).First().Value;