18 references to MakeBoolScalarLabel
Microsoft.ML.Data (1)
Prediction\CalibratorCatalog.cs (1)
69LabelColumn = TrainerUtils.MakeBoolScalarLabel(labelColumn);
Microsoft.ML.FastTree (6)
FastTreeClassification.cs (2)
164: base(env, TrainerUtils.MakeBoolScalarLabel(labelColumnName), featureColumnName, exampleWeightColumnName, null, numberOfLeaves, numberOfTrees, minimumExampleCountPerLeaf, learningRate) 176: base(env, options, TrainerUtils.MakeBoolScalarLabel(options.LabelColumnName))
GamClassification.cs (2)
86: base(env, options, LoadNameValue, TrainerUtils.MakeBoolScalarLabel(options.LabelColumnName)) 108: base(env, LoadNameValue, TrainerUtils.MakeBoolScalarLabel(labelColumnName), featureColumnName, rowGroupColumnName, numberOfIterations, learningRate, maximumBinCountPerFeature)
RandomForestClassification.cs (2)
195: base(env, TrainerUtils.MakeBoolScalarLabel(labelColumnName), featureColumnName, exampleWeightColumnName, null, numberOfLeaves, numberOfTrees, minimumExampleCountPerLeaf) 207: base(env, options, TrainerUtils.MakeBoolScalarLabel(options.LabelColumnName))
Microsoft.ML.LightGbm (1)
LightGbmBinaryTrainer.cs (1)
194: base(env, LoadNameValue, options, TrainerUtils.MakeBoolScalarLabel(options.LabelColumnName))
Microsoft.ML.Mkl.Components (1)
SymSgdClassificationTrainer.cs (1)
242TrainerUtils.MakeBoolScalarLabel(options.LabelColumnName))
Microsoft.ML.StandardTrainers (9)
LdSvm\LdSvmTrainer.cs (1)
167TrainerUtils.MakeBoolScalarLabel(options.LabelColumnName),
Standard\LogisticRegression\LogisticRegression.cs (2)
141: base(env, featureColumn, TrainerUtils.MakeBoolScalarLabel(labelColumn), exampleWeightColumnName, 155: base(env, options, TrainerUtils.MakeBoolScalarLabel(options.LabelColumnName))
Standard\Online\AveragedPerceptron.cs (1)
153: base(options, env, UserNameValue, TrainerUtils.MakeBoolScalarLabel(options.LabelColumnName))
Standard\Online\LinearSvm.cs (1)
295: base(options, env, UserNameValue, TrainerUtils.MakeBoolScalarLabel(options.LabelColumnName))
Standard\SdcaBinary.cs (4)
1501: base(env, featureColumnName, TrainerUtils.MakeBoolScalarLabel(labelColumnName), TrainerUtils.MakeR4ScalarWeightColumn(weightColumnName), 1514: base(env, options, TrainerUtils.MakeBoolScalarLabel(options.LabelColumnName), TrainerUtils.MakeR4ScalarWeightColumn(options.ExampleWeightColumnName)) 1974: base(env, featureColumn, TrainerUtils.MakeBoolScalarLabel(labelColumn), weightColumn) 1999: base(env, options.FeatureColumnName, TrainerUtils.MakeBoolScalarLabel(options.LabelColumnName), options.ExampleWeightColumnName)