1 instantiation of PlattCalibratorEstimator
Microsoft.ML.Data (1)
TrainCatalog.cs (1)
349return new PlattCalibratorEstimator(Owner.GetEnvironment(), labelColumnName, scoreColumnName, exampleWeightColumnName);
9 references to PlattCalibratorEstimator
Microsoft.ML.Data (4)
Prediction\CalibratorCatalog.cs (3)
340/// Initializes a new instance of <see cref="PlattCalibratorEstimator"/> 363/// Note that unlike, say, <see cref="PlattCalibratorEstimator"/>, the fit function here is trivial 399/// The <see cref="ITransformer"/> implementation obtained by training a <see cref="FixedPlattCalibratorEstimator"/> or a <see cref="PlattCalibratorEstimator"/>.
TrainCatalog.cs (1)
344public PlattCalibratorEstimator Platt(
Microsoft.ML.Samples (1)
Dynamic\Trainers\BinaryClassification\Calibrators\Platt.cs (1)
53var calibratorEstimator = mlContext.BinaryClassification.Calibrators
Microsoft.ML.Tests (4)
TrainerEstimators\CalibratorEstimators.cs (3)
24var plattCalibratorEstimator = new PlattCalibratorEstimator(Env); 181var calibratorPlattEstimator = new PlattCalibratorEstimator(Env, 262var newPlattCalibratorEstimator = new PlattCalibratorEstimator(Env);
TrainerEstimators\MetalinearEstimators.cs (1)
25var calibrator = new PlattCalibratorEstimator(Env);