4 implementations of IBinaryOutputCombiner
Microsoft.ML.Ensemble (4)
OutputCombiners\BaseAverager.cs (1)
10internal abstract class BaseAverager : IBinaryOutputCombiner, ICanSaveModel
OutputCombiners\Median.cs (1)
19internal sealed class Median : IRegressionOutputCombiner, IBinaryOutputCombiner, ICanSaveModel
OutputCombiners\Stacking.cs (1)
20internal sealed class Stacking : BaseScalarStacking, IBinaryOutputCombiner
OutputCombiners\Voting.cs (1)
16internal sealed class Voting : IBinaryOutputCombiner, ICanSaveModel
15 references to IBinaryOutputCombiner
Microsoft.ML.Ensemble (15)
EntryPoints\CreateEnsemble.cs (1)
206IBinaryOutputCombiner combiner;
EntryPoints\OutputCombiner.cs (6)
28IBinaryOutputCombiner IComponentFactory<IBinaryOutputCombiner>.CreateComponent(IHostEnvironment env) => new Average(env); 36IBinaryOutputCombiner IComponentFactory<IBinaryOutputCombiner>.CreateComponent(IHostEnvironment env) => new Median(env); 42IBinaryOutputCombiner IComponentFactory<IBinaryOutputCombiner>.CreateComponent(IHostEnvironment env) => new Voting(env);
OutputCombiners\IOutputCombiner.cs (1)
56internal interface ISupportBinaryOutputCombinerFactory : IComponentFactory<IBinaryOutputCombiner>
OutputCombiners\Stacking.cs (1)
49public IBinaryOutputCombiner CreateComponent(IHostEnvironment env) => new Stacking(env, this);
OutputCombiners\WeightedAverage.cs (1)
46public IBinaryOutputCombiner CreateComponent(IHostEnvironment env) => new WeightedAverage(env, this);
PipelineEnsemble.cs (3)
298public ImplOneWithCalibrator(IHostEnvironment env, PredictorModel[] predictors, IBinaryOutputCombiner combiner) 524var binaryCombiner = combiner as IBinaryOutputCombiner;
Trainer\Binary\EnsembleTrainer.cs (2)
32IBinarySubModelSelector, IBinaryOutputCombiner>, 94var combiner = _outputCombiner.CreateComponent(Host);