3 instantiations of PredictorModelOutput
Microsoft.ML.EntryPoints (3)
ModelOperations.cs (3)
111
return new
PredictorModelOutput
() { PredictorModel = input.PredictorModel.Apply(env, model) };
122
return new
PredictorModelOutput
() { PredictorModel = input.PredictorModel.Apply(env, input.TransformModel) };
155
return new
PredictorModelOutput
6 references to PredictorModelOutput
Microsoft.ML.Core.Tests (1)
UnitTests\TestEntryPoints.cs (1)
4467
var
combine = ModelOperations.CombineModels(Env, new ModelOperations.PredictorModelInput()
Microsoft.ML.EntryPoints (5)
CrossValidationMacro.cs (1)
270
outputMap.Add(nameof(ModelOperations.
PredictorModelOutput
.PredictorModel), combineNodeOutputPredictorModel.VarName);
ModelOperations.cs (3)
100
public static
PredictorModelOutput
CombineModels(IHostEnvironment env, PredictorModelInput input)
115
public static
PredictorModelOutput
CombineTwoModels(IHostEnvironment env, SimplePredictorModelInput input)
132
public static
PredictorModelOutput
CombineOvaModels(IHostEnvironment env, CombineOvaPredictorModelsInput input)
TrainTestMacro.cs (1)
183
outputMap.Add(nameof(ModelOperations.
PredictorModelOutput
.PredictorModel), combineNodeOutputPredictorModel.VarName);