4 instantiations of FeatureWeightsCalibratedModelParameters
Microsoft.ML.FastTree (2)
FastTreeClassification.cs (1)
213return new FeatureWeightsCalibratedModelParameters<FastTreeBinaryModelParameters, PlattCalibrator>(Host, pred, cali);
TreeEnsemble\TreeEnsembleCombiner.cs (1)
108return new FeatureWeightsCalibratedModelParameters<FastTreeBinaryModelParameters, PlattCalibrator>(_host, fastTreeModel, cali);
Microsoft.ML.LightGbm (2)
LightGbmBinaryTrainer.cs (1)
259return new FeatureWeightsCalibratedModelParameters<LightGbmBinaryModelParameters, PlattCalibrator>(Host, pred, cali);
LightGbmMulticlassTrainer.cs (1)
224predictors[i] = new FeatureWeightsCalibratedModelParameters<LightGbmBinaryModelParameters, PlattCalibrator>(Host, pred, cali);
6 references to FeatureWeightsCalibratedModelParameters
Microsoft.ML.Data (4)
Prediction\Calibrator.cs (4)
66[assembly: LoadableClass(typeof(CalibratedModelParametersBase), typeof(FeatureWeightsCalibratedModelParameters<IPredictorProducing<float>, ICalibrator>), null, typeof(SignatureLoadModel), 68FeatureWeightsCalibratedModelParameters<IPredictorWithFeatureWeights<float>, ICalibrator>.LoaderSignature)] 499loaderAssemblyName: typeof(FeatureWeightsCalibratedModelParameters<TSubModel, TCalibrator>).Assembly.FullName); 521Type genericType = typeof(FeatureWeightsCalibratedModelParameters<,>);
Microsoft.ML.Tests (2)
CalibratedModelParametersTests.cs (1)
83Type expectedInternalType = typeof(FeatureWeightsCalibratedModelParameters<FastTreeBinaryModelParameters, PlattCalibrator>);
TrainerEstimators\TreeEstimators.cs (1)
380((FeatureWeightsCalibratedModelParameters<LightGbmBinaryModelParameters, PlattCalibrator>)predictor).Calibrator.Slope == -sigmoid));