20 references to ModelOperations
Microsoft.ML.Core.Tests (14)
UnitTests\TestEntryPoints.cs (14)
138var model = ModelOperations.CombineTwoModels(Env, new ModelOperations.SimplePredictorModelInput() { TransformModel = trainData.Model, PredictorModel = lrModel }).PredictorModel; 159var data2 = ModelOperations.Apply(Env, new ModelOperations.ApplyTransformModelInput() { Data = dataView, TransformModel = data1.Model }); 1569predictorModels[i] = ModelOperations.CombineTwoModels(Env, 1570new ModelOperations.SimplePredictorModelInput() 1835predictorModels[i] = ModelOperations.CombineTwoModels(Env, 1836new ModelOperations.SimplePredictorModelInput() 2020predictorModels[i] = ModelOperations.CombineTwoModels(Env, 2021new ModelOperations.SimplePredictorModelInput() 2169predictorModels[i] = ModelOperations.CombineTwoModels(Env, 2170new ModelOperations.SimplePredictorModelInput() 4467var combine = ModelOperations.CombineModels(Env, new ModelOperations.PredictorModelInput()
Microsoft.ML.EntryPoints (6)
CrossValidationMacro.cs (2)
254var combineModelsArgs = new ModelOperations.SimplePredictorModelInput(); 270outputMap.Add(nameof(ModelOperations.PredictorModelOutput.PredictorModel), combineNodeOutputPredictorModel.VarName);
ModelOperations.cs (1)
14[assembly: LoadableClass(typeof(void), typeof(ModelOperations), null, typeof(SignatureEntryPointModule), "ModelOperations")]
OneVersusAllMacro.cs (1)
165var combineArgs = new ModelOperations.CombineOvaPredictorModelsInput();
TrainTestMacro.cs (2)
167var combineArgs = new ModelOperations.SimplePredictorModelInput(); 183outputMap.Add(nameof(ModelOperations.PredictorModelOutput.PredictorModel), combineNodeOutputPredictorModel.VarName);