19 references to MakeR4ScalarColumn
Microsoft.ML.Data (1)
Prediction\CalibratorCatalog.cs (1)
72ScoreColumn = TrainerUtils.MakeR4ScalarColumn(scoreColumn); // Do we fathom this being named anything else (renaming column)? Complete metadata?
Microsoft.ML.FastTree (10)
FastTreeRanking.cs (2)
105: base(env, TrainerUtils.MakeR4ScalarColumn(labelColumnName), featureColumnName, exampleWeightColumnName, rowGroupColumnName, numberOfLeaves, numberOfTrees, minimumExampleCountPerLeaf, learningRate) 116: base(env, options, TrainerUtils.MakeR4ScalarColumn(options.LabelColumnName))
FastTreeRegression.cs (2)
94: base(env, TrainerUtils.MakeR4ScalarColumn(labelColumnName), featureColumnName, exampleWeightColumnName, null, numberOfLeaves, numberOfTrees, minimumExampleCountPerLeaf, learningRate) 104: base(env, options, TrainerUtils.MakeR4ScalarColumn(options.LabelColumnName))
FastTreeTweedie.cs (2)
98: base(env, TrainerUtils.MakeR4ScalarColumn(labelColumnName), featureColumnName, exampleWeightColumnName, null, numberOfLeaves, numberOfTrees, minimumExampleCountPerLeaf, learningRate) 112: base(env, options, TrainerUtils.MakeR4ScalarColumn(options.LabelColumnName))
GamRegression.cs (2)
78: base(env, options, LoadNameValue, TrainerUtils.MakeR4ScalarColumn(options.LabelColumnName)) { } 97: base(env, LoadNameValue, TrainerUtils.MakeR4ScalarColumn(labelColumnName), featureColumnName, rowGroupColumnName, numberOfIterations, learningRate, maximumBinCountPerFeature)
RandomForestRegression.cs (2)
334: base(env, TrainerUtils.MakeR4ScalarColumn(labelColumnName), featureColumnName, exampleWeightColumnName, null, numberOfLeaves, numberOfTrees, minimumExampleCountPerLeaf) 346: base(env, options, TrainerUtils.MakeR4ScalarColumn(options.LabelColumnName), true)
Microsoft.ML.LightGbm (2)
LightGbmRankingTrainer.cs (1)
177: base(env, LoadNameValue, options, TrainerUtils.MakeR4ScalarColumn(options.LabelColumnName))
LightGbmRegressionTrainer.cs (1)
192: base(env, LoadNameValue, options, TrainerUtils.MakeR4ScalarColumn(options.LabelColumnName))
Microsoft.ML.Mkl.Components (1)
OlsLinearRegression.cs (1)
122TrainerUtils.MakeR4ScalarColumn(options.LabelColumnName), TrainerUtils.MakeR4ScalarWeightColumn(options.ExampleWeightColumnName))
Microsoft.ML.StandardTrainers (5)
Standard\Online\OnlineGradientDescent.cs (1)
161: base(options, env, UserNameValue, TrainerUtils.MakeR4ScalarColumn(options.LabelColumnName))
Standard\PoissonRegression\PoissonRegression.cs (2)
96: base(env, featureColumn, TrainerUtils.MakeR4ScalarColumn(labelColumn), weights, 107: base(env, options, TrainerUtils.MakeR4ScalarColumn(options.LabelColumnName))
Standard\SdcaRegression.cs (2)
119: base(env, featureColumn, TrainerUtils.MakeR4ScalarColumn(labelColumn), TrainerUtils.MakeR4ScalarWeightColumn(weights), 129: base(env, options, TrainerUtils.MakeR4ScalarColumn(labelColumn), TrainerUtils.MakeR4ScalarWeightColumn(weightColumn))