38 references to Bind
Microsoft.ML.Core (5)
Data\RoleMappedSchema.cs (5)
359
yield return ColumnRole.Label.
Bind
(label);
361
yield return ColumnRole.Feature.
Bind
(feature);
363
yield return ColumnRole.Group.
Bind
(group);
365
yield return ColumnRole.Weight.
Bind
(weight);
367
yield return ColumnRole.Name.
Bind
(name);
Microsoft.ML.Data (23)
Commands\TrainCommand.cs (1)
525
return customColumnArg.Select(kindName => new ColumnRole(kindName.Key).
Bind
(kindName.Value));
Deprecated\Instances\HeaderSchema.cs (2)
309
roles: RoleMappedSchema.ColumnRole.Feature.
Bind
(RoleMappedSchema.ColumnRole.Feature.Value));
401
roles: RoleMappedSchema.ColumnRole.Feature.
Bind
(RoleMappedSchema.ColumnRole.Feature.Value));
Evaluators\AnomalyDetectionEvaluator.cs (1)
597
RoleMappedSchema.ColumnRole.Label.
Bind
(label),
Evaluators\BinaryClassifierEvaluator.cs (4)
819
RoleMappedSchema.ColumnRole.Label.
Bind
(label),
867
RoleMappedSchema.ColumnRole.Label.
Bind
(label),
947
RoleMappedSchema.ColumnRole.Label.
Bind
(label),
993
RoleMappedSchema.ColumnRole.Label.
Bind
(label),
Evaluators\ClusteringEvaluator.cs (3)
74
roles.Add(RoleMappedSchema.ColumnRole.Label.
Bind
(label));
77
roles.Add(RoleMappedSchema.ColumnRole.Feature.
Bind
(features));
816
yield return RoleMappedSchema.ColumnRole.Feature.
Bind
(feat);
Evaluators\MamlEvaluator.cs (3)
123
roles = AnnotationUtils.Prepend(roles, RoleMappedSchema.ColumnRole.Name.
Bind
(schema.Name.Value.Name));
143
yield return RoleMappedSchema.ColumnRole.Label.
Bind
(label);
147
yield return RoleMappedSchema.ColumnRole.Weight.
Bind
(weight);
Evaluators\MulticlassClassificationEvaluator.cs (1)
558
RoleMappedSchema.ColumnRole.Label.
Bind
(label),
Evaluators\RankingEvaluator.cs (3)
260
RoleMappedSchema.ColumnRole.Label.
Bind
(label),
261
RoleMappedSchema.ColumnRole.Group.
Bind
(groupId),
897
return cols.Prepend(RoleMappedSchema.ColumnRole.Group.
Bind
(groupIdCol));
Evaluators\RegressionEvaluator.cs (1)
180
RoleMappedSchema.ColumnRole.Label.
Bind
(label),
Scorers\FeatureContributionCalculation.cs (1)
390
yield return RoleMappedSchema.ColumnRole.Feature.
Bind
(FeatureColumn.Name);
Scorers\SchemaBindablePredictorWrapper.cs (3)
230
yield return RoleMappedSchema.ColumnRole.Feature.
Bind
(InputRoleMappedSchema.Feature.Value.Name);
550
yield return (InputRoleMappedSchema.Feature.HasValue) ? RoleMappedSchema.ColumnRole.Feature.
Bind
(InputRoleMappedSchema.Feature?.Name) : RoleMappedSchema.ColumnRole.Label.
Bind
(InputRoleMappedSchema.Label?.Name);
Microsoft.ML.EntryPoints (5)
CrossValidationMacro.cs (4)
366
RoleMappedSchema.ColumnRole.Label.
Bind
(input.LabelColumn),
367
RoleMappedSchema.ColumnRole.Weight.
Bind
(input.WeightColumn.Value),
368
RoleMappedSchema.ColumnRole.Group.
Bind
(input.GroupColumn),
369
RoleMappedSchema.ColumnRole.Name.
Bind
(input.NameColumn.Value))).ToArray(),
FeatureCombiner.cs (1)
33
yield return RoleMappedSchema.ColumnRole.Feature.
Bind
(col);
Microsoft.ML.FastTree (3)
GamModelParameters.cs (2)
683
RoleMappedSchema.ColumnRole.Label.
Bind
(DefaultColumnNames.Label),
684
new RoleMappedSchema.ColumnRole(AnnotationUtils.Const.ScoreValueKind.Score).
Bind
(DefaultColumnNames.Score));
TreeEnsembleFeaturizer.cs (1)
359
yield return RoleMappedSchema.ColumnRole.Feature.
Bind
(FeatureColumn.Name);
Microsoft.ML.Recommender (2)
MatrixFactorizationPredictor.cs (2)
375
yield return RecommenderUtils.MatrixColumnIndexKind.
Bind
(_matrixColumnIndexColumnName);
376
yield return RecommenderUtils.MatrixRowIndexKind.
Bind
(_matrixRowIndexColumnName);