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