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