TreeEnsembleModelParameters.GetFeatureWeights(VBuffer<Single>) Method

Definition

Get the cumulative split gains for each feature across all trees.

public void GetFeatureWeights (ref Microsoft.ML.Data.VBuffer<float> weights);
abstract member GetFeatureWeights : VBuffer -> unit
override this.GetFeatureWeights : VBuffer -> unit
Public Sub GetFeatureWeights (ByRef weights As VBuffer(Of Single))

Parameters

weights
VBuffer<Single>

A VBuffer<T> to hold the cumulative split gain value for each feature. The i-th element in weights stores the cumulative split gain of the i-th feature.

Applies to