15 references to PlattCalibrator
Microsoft.ML.Data (4)
Prediction\Calibrator.cs (4)
1502return new PlattCalibrator(Host, slope, offset); 1627return new PlattCalibrator(Host, slope, offset); 1669ICalibrator ICalibratorTrainer.FinishTraining(IChannel ch) => new PlattCalibrator(_host, _slope, _offset); 1832PlattCalibrator newCal = new PlattCalibrator(_host, a / calibrators.Count, b / calibrators.Count);
Microsoft.ML.FastTree (3)
FastTreeClassification.cs (1)
212var cali = new PlattCalibrator(Host, -1 * _sigmoidParameter, 0);
GamClassification.cs (1)
142var calibrator = new PlattCalibrator(Host, -1.0 * _sigmoidParameter, 0);
TreeEnsemble\TreeEnsembleCombiner.cs (1)
106var cali = new PlattCalibrator(_host, -1, 0);
Microsoft.ML.LightGbm (2)
LightGbmBinaryTrainer.cs (1)
258var cali = new PlattCalibrator(Host, -LightGbmTrainerOptions.Sigmoid, 0);
LightGbmMulticlassTrainer.cs (1)
223var cali = new PlattCalibrator(Host, -LightGbmTrainerOptions.Sigmoid, 0);
Microsoft.ML.Mkl.Components (1)
SymSgdClassificationTrainer.cs (1)
259return new ParameterMixingCalibratedModelParameters<LinearBinaryModelParameters, PlattCalibrator>(Host, predictor, new PlattCalibrator(Host, -1, 0));
Microsoft.ML.StandardTrainers (5)
Standard\LogisticRegression\LogisticRegression.cs (1)
458new PlattCalibrator(Host, -1, 0));
Standard\SdcaBinary.cs (4)
1616var calibrator = new PlattCalibrator(Host, -1, 0); 1827return new ParameterMixingCalibratedModelParameters<LinearBinaryModelParameters, PlattCalibrator>(Host, predictor, new PlattCalibrator(Host, -1, 0)); 2318var calibrator = new PlattCalibrator(Host, -1, 0); 2461var calibrator = new PlattCalibrator(Host, -1, 0);