Implemented interface member:
method
Fit
Microsoft.ML.IEstimator<TTransformer>.Fit(Microsoft.ML.IDataView)
14 references to Fit
Microsoft.ML.Data (1)
Prediction\CalibratorCatalog.cs (1)
158/// An instance of this class is the result of calling <see cref="CalibratorEstimatorBase{TICalibrator}.Fit(IDataView)"/>.
Microsoft.ML.Samples (4)
Dynamic\Trainers\BinaryClassification\Calibrators\FixedPlatt.cs (1)
56var calibratorTransformer = calibratorEstimator.Fit(scoredData);
Dynamic\Trainers\BinaryClassification\Calibrators\Isotonic.cs (1)
56var calibratorTransformer = calibratorEstimator.Fit(scoredData);
Dynamic\Trainers\BinaryClassification\Calibrators\Naive.cs (1)
56var calibratorTransformer = calibratorEstimator.Fit(scoredData);
Dynamic\Trainers\BinaryClassification\Calibrators\Platt.cs (1)
56var calibratorTransformer = calibratorEstimator.Fit(scoredData);
Microsoft.ML.Tests (9)
TrainerEstimators\CalibratorEstimators.cs (9)
25var plattCalibratorTransformer = plattCalibratorEstimator.Fit(calibratorTestData.ScoredData); 46var fixedPlattCalibratorTransformer = fixedPlattCalibratorEstimator.Fit(calibratorTestData.ScoredData); 66var naiveCalibratorTransformer = naiveCalibratorEstimator.Fit(calibratorTestData.ScoredData); 86var pavCalibratorTransformer = pavCalibratorEstimator.Fit(calibratorTestData.ScoredData); 183var calibratorPlattTransformer = calibratorPlattEstimator.Fit(dataArray[i]); 189var calibratorFixedPlattTransformer = calibratorFixedPlattEstimator.Fit(dataArray[i]); 195var calibratorNaiveTransformer = calibratorNaiveEstimator.Fit(dataArray[i]); 201var calibratorIsotonicTransformer = calibratorIsotonicEstimator.Fit(dataArray[i]); 263var newPlattCalibratorTransformer = newPlattCalibratorEstimator.Fit(calibratorTestData.ScoredData);