1 implementation of IParameterMixer
Microsoft.ML.Data (1)
Prediction\Calibrator.cs (1)
1676
public sealed class PlattCalibrator : ICalibrator,
IParameterMixer
, ICanSaveModel, ISingleCanSavePfa, ISingleCanSaveOnnx
13 references to IParameterMixer
Microsoft.ML.Data (13)
Dirty\PredictorInterfaces.cs (2)
19
IParameterMixer
CombineParameters(IList<
IParameterMixer
> models);
Prediction\Calibrator.cs (11)
542
/// Encapsulates a predictor and a calibrator that implement <see cref="
IParameterMixer
"/>.
543
/// Its implementation of <see cref="
IParameterMixer
.CombineParameters"/> combines both the predictors and the calibrators.
560
Host.Check(calibrator is
IParameterMixer
, "Calibrator does not implement " + nameof(
IParameterMixer
));
582
Host.Check(SubModel is IParameterMixer<float>, "Predictor does not implement " + nameof(
IParameterMixer
));
631
return (
IParameterMixer
)model.Calibrator;
1044
if (predWithFeatureScores != null && predictor is IParameterMixer<float> && cali is
IParameterMixer
)
1820
IParameterMixer
IParameterMixer
.CombineParameters(IList<
IParameterMixer
> calibrators)
1824
foreach (
IParameterMixer
calibrator in calibrators)