28 references to GetColumnRoleNames
Microsoft.ML.Data (13)
Commands\CrossValidationCommand.cs (4)
259return new RoleMappedData(pipe, srcData.Schema.GetColumnRoleNames()); 544trainData.Schema.GetColumnRoleNames()); 555var dataEval = new RoleMappedData(scorePipe, testData.Schema.GetColumnRoleNames(), opt: true); 562perInstance = new RoleMappedData(perInst, dataEval.Schema.GetColumnRoleNames(), opt: true);
Commands\TrainCommand.cs (3)
178validData = new RoleMappedData(validPipe, data.Schema.GetColumnRoleNames()); 196testDataUsedInTrainer = new RoleMappedData(testPipeUsedInTrainer, data.Schema.GetColumnRoleNames()); 506data = new RoleMappedData(cacheView, data.Schema.GetColumnRoleNames());
Commands\TrainTestCommand.cs (2)
164validData = new RoleMappedData(validPipe, data.Schema.GetColumnRoleNames()); 182testDataUsedInTrainer = new RoleMappedData(testPipeUsedInTrainer, data.Schema.GetColumnRoleNames());
EntryPoints\InputBase.cs (1)
116cachedRoleMappedData = new RoleMappedData(outputData, roleMappedData.Schema.GetColumnRoleNames());
EntryPoints\PredictorModelImpl.cs (1)
37_roleMappings = trainingData.Schema.GetColumnRoleNames().ToArray();
Model\Pfa\SavePfaCommand.cs (1)
150data = new RoleMappedData(end, trainSchema.GetColumnRoleNames());
Utilities\ModelFileUtils.cs (1)
245foreach (var role in schema.GetColumnRoleNames().OrderBy(r => r.Key.Value))
Microsoft.ML.Ensemble (5)
EnsembleUtils.cs (1)
39var res = new RoleMappedData(view, data.Schema.GetColumnRoleNames());
Selector\SubsetSelector\BaseSubsetSelector.cs (2)
80dataTest = new RoleMappedData(viewTest, Data.Schema.GetColumnRoleNames()); 81dataTrain = new RoleMappedData(viewTrain, Data.Schema.GetColumnRoleNames());
Selector\SubsetSelector\BootstrapSelector.cs (1)
52var dataTrain = new RoleMappedData(viewTrain, Data.Schema.GetColumnRoleNames());
Selector\SubsetSelector\RandomPartitionSelector.cs (1)
50var dataTrain = new RoleMappedData(viewTrain, Data.Schema.GetColumnRoleNames());
Microsoft.ML.EntryPoints (4)
PermutationFeatureImportance.cs (4)
90var roles = roleMappedData.Schema.GetColumnRoleNames(); 147var roles = roleMappedData.Schema.GetColumnRoleNames(); 206var roles = roleMappedData.Schema.GetColumnRoleNames(); 258var roles = roleMappedData.Schema.GetColumnRoleNames();
Microsoft.ML.FastTree (2)
FastTree.cs (1)
1359examples = new RoleMappedData(data, examples.Schema.GetColumnRoleNames());
GamModelParameters.cs (1)
891var data = new RoleMappedData(loader, schema.GetColumnRoleNames(), opt: true);
Microsoft.ML.Mkl.Components (1)
SymSgdClassificationTrainer.cs (1)
205var roles = examples.Schema.GetColumnRoleNames();
Microsoft.ML.OnnxConverter (1)
SaveOnnxCommand.cs (1)
342data = new RoleMappedData(end, trainSchema.GetColumnRoleNames());
Microsoft.ML.StandardTrainers (2)
Standard\SdcaBinary.cs (1)
116var roles = examples.Schema.GetColumnRoleNames();
Standard\StochasticTrainerBase.cs (1)
80var roles = examples.Schema.GetColumnRoleNames();