1 implementation of IParameterMixer
Microsoft.ML.Data (1)
Prediction\Calibrator.cs (1)
1676public sealed class PlattCalibrator : ICalibrator, IParameterMixer, ICanSaveModel, ISingleCanSavePfa, ISingleCanSaveOnnx
13 references to IParameterMixer
Microsoft.ML.Data (13)
Dirty\PredictorInterfaces.cs (2)
19IParameterMixer 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. 560Host.Check(calibrator is IParameterMixer, "Calibrator does not implement " + nameof(IParameterMixer)); 582Host.Check(SubModel is IParameterMixer<float>, "Predictor does not implement " + nameof(IParameterMixer)); 631return (IParameterMixer)model.Calibrator; 1044if (predWithFeatureScores != null && predictor is IParameterMixer<float> && cali is IParameterMixer) 1820IParameterMixer IParameterMixer.CombineParameters(IList<IParameterMixer> calibrators) 1824foreach (IParameterMixer calibrator in calibrators)