1 write to WeightColumn
Microsoft.ML.Data (1)
Training\TrainerEstimatorBase.cs (1)
69
WeightColumn
= weight;
9 references to WeightColumn
Microsoft.ML.Data (8)
Training\TrainerEstimatorBase.cs (8)
114
if (
WeightColumn
.IsValid)
116
if (!inputSchema.TryFindColumn(
WeightColumn
.Name, out var weightCol))
117
throw Host.ExceptSchemaMismatch(nameof(inputSchema), "weight",
WeightColumn
.Name);
118
if (!
WeightColumn
.IsCompatibleWith(weightCol))
119
throw Host.ExceptSchemaMismatch(nameof(inputSchema), "weight",
WeightColumn
.Name,
120
WeightColumn
.GetTypeString(), weightCol.GetTypeString());
166
new RoleMappedData(data, label: LabelColumn.Name, feature: FeatureColumn.Name, weight:
WeightColumn
.Name);
198
new RoleMappedData(data, label: LabelColumn.Name, feature: FeatureColumn.Name, group: GroupIdColumn.Name, weight:
WeightColumn
.Name);
Microsoft.ML.StandardTrainers (1)
Standard\LogisticRegression\LbfgsPredictorBase.cs (1)
243
options.ExampleWeightColumnName =
WeightColumn
.Name;