4 implementations of GetFeatureWeights
Microsoft.ML.Data (2)
Prediction\Calibrator.cs (2)
535public void GetFeatureWeights(ref VBuffer<float> weights) 612public void GetFeatureWeights(ref VBuffer<float> weights)
Microsoft.ML.FastTree (1)
FastTree.cs (1)
3234public void GetFeatureWeights(ref VBuffer<float> weights)
Microsoft.ML.StandardTrainers (1)
Standard\LinearModelParameters.cs (1)
397void IHaveFeatureWeights.GetFeatureWeights(ref VBuffer<float> weights)
7 references to GetFeatureWeights
Microsoft.ML.Data (2)
Prediction\Calibrator.cs (2)
537_featureWeights.GetFeatureWeights(ref weights); 614_featureWeights.GetFeatureWeights(ref weights);
Microsoft.ML.Mkl.Components (1)
SymSgdClassificationTrainer.cs (1)
715((IHaveFeatureWeights)predictor).GetFeatureWeights(ref weights);
Microsoft.ML.StandardTrainers (2)
Standard\Online\OnlineLinear.cs (1)
140((IHaveFeatureWeights)predictor).GetFeatureWeights(ref Weights);
Standard\SdcaBinary.cs (1)
2055((IHaveFeatureWeights)predictor).GetFeatureWeights(ref weights);
Microsoft.ML.Transforms (2)
LearnerFeatureSelection.cs (1)
299rfs.GetFeatureWeights(ref scores);
PermutationFeatureImportance.cs (1)
73predictorWithWeights.GetFeatureWeights(ref weights);