4 instantiations of FeatureWeightsCalibratedModelParameters
Microsoft.ML.FastTree (2)
FastTreeClassification.cs (1)
213
return new
FeatureWeightsCalibratedModelParameters
<FastTreeBinaryModelParameters, PlattCalibrator>(Host, pred, cali);
TreeEnsemble\TreeEnsembleCombiner.cs (1)
108
return new
FeatureWeightsCalibratedModelParameters
<FastTreeBinaryModelParameters, PlattCalibrator>(_host, fastTreeModel, cali);
Microsoft.ML.LightGbm (2)
LightGbmBinaryTrainer.cs (1)
259
return new
FeatureWeightsCalibratedModelParameters
<LightGbmBinaryModelParameters, PlattCalibrator>(Host, pred, cali);
LightGbmMulticlassTrainer.cs (1)
224
predictors[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),
68
FeatureWeightsCalibratedModelParameters
<IPredictorWithFeatureWeights<float>, ICalibrator>.LoaderSignature)]
499
loaderAssemblyName: typeof(
FeatureWeightsCalibratedModelParameters
<TSubModel, TCalibrator>).Assembly.FullName);
521
Type genericType = typeof(
FeatureWeightsCalibratedModelParameters
<,>);
Microsoft.ML.Tests (2)
CalibratedModelParametersTests.cs (1)
83
Type expectedInternalType = typeof(
FeatureWeightsCalibratedModelParameters
<FastTreeBinaryModelParameters, PlattCalibrator>);
TrainerEstimators\TreeEstimators.cs (1)
380
((
FeatureWeightsCalibratedModelParameters
<LightGbmBinaryModelParameters, PlattCalibrator>)predictor).Calibrator.Slope == -sigmoid));