public void PavCalibratorEstimator()
        {
            var calibratorTestData = GetCalibratorTestData();

            // pav calibrator
            var pavCalibratorEstimator   = new PavCalibratorEstimator(Env);
            var pavCalibratorTransformer = pavCalibratorEstimator.Fit(calibratorTestData.ScoredData);

            //check data
            CheckValidCalibratedData(calibratorTestData.ScoredData, pavCalibratorTransformer);

            //test estimator
            TestEstimatorCore(calibratorTestData.Pipeline, calibratorTestData.Data);

            Done();
        }
        public void PavCalibratorEstimator()
        {
            var calibratorTestData = GetCalibratorTestData();

            // pav calibrator
            var pavCalibratorEstimator   = new PavCalibratorEstimator(Env, calibratorTestData.transformer.Model, "Label", "Features");
            var pavCalibratorTransformer = pavCalibratorEstimator.Fit(calibratorTestData.scoredData);

            //check data
            checkValidCalibratedData(calibratorTestData.scoredData, pavCalibratorTransformer);

            //test estimator
            TestEstimatorCore(calibratorTestData.pipeline, calibratorTestData.data);

            Done();
        }