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