Calculates gains for each feature and returns the best possible split information for the feature.
tf.raw_ops.BoostedTreesCalculateBestFeatureSplit(
    node_id_range, stats_summary, l1, l2, tree_complexity, min_node_weight,
    logits_dimension, split_type='inequality', name=None
)
The split information is the best threshold (bucket id), gains and left/right node contributions per node for each feature.
It is possible that not all nodes can be split on each feature. Hence, the list of possible nodes can differ between the features. Therefore, we return node_ids_list for each feature, containing the list of nodes that this feature can be used to split.
In this manner, the output is the best split per features and per node, so that it needs to be combined later to produce the best split for each node (among all possible features).
The output shapes are compatible in a way that the first dimension of all tensors are the same and equal to the number of possible split nodes for each feature.
| Args | |
|---|---|
| node_id_range | A Tensorof typeint32.
A Rank 1 tensor (shape=[2]) to specify the range [first, last) of node ids to process withinstats_summary_list. The nodes are iterated between the two nodes specified by the tensor, as likefor node_id in range(node_id_range[0], node_id_range[1])(Note that the last index node_id_range[1] is exclusive). | 
| stats_summary | A Tensorof typefloat32.
A Rank 4 tensor (#shape=[max_splits, feature_dims, bucket, stats_dims]) for accumulated stats summary (gradient/hessian) per node, per dimension, per buckets for each feature.
The first dimension of the tensor is the maximum number of splits, and thus not all elements of it will be used, but only the indexes specified by node_ids will be used. | 
| l1 | A Tensorof typefloat32.
l1 regularization factor on leaf weights, per instance based. | 
| l2 | A Tensorof typefloat32.
l2 regularization factor on leaf weights, per instance based. | 
| tree_complexity | A Tensorof typefloat32.
adjustment to the gain, per leaf based. | 
| min_node_weight | A Tensorof typefloat32.
minimum avg of hessians in a node before required for the node to be considered for splitting. | 
| logits_dimension | An intthat is>= 1.
The dimension of logit, i.e., number of classes. | 
| split_type | An optional stringfrom:"inequality", "equality". Defaults to"inequality".
A string indicating if this Op should perform inequality split or equality split. | 
| name | A name for the operation (optional). | 
| Returns | |
|---|---|
| A tuple of Tensorobjects (node_ids, gains, feature_dimensions, thresholds, left_node_contribs, right_node_contribs, split_with_default_directions). | |
| node_ids | A Tensorof typeint32. | 
| gains | A Tensorof typefloat32. | 
| feature_dimensions | A Tensorof typeint32. | 
| thresholds | A Tensorof typeint32. | 
| left_node_contribs | A Tensorof typefloat32. | 
| right_node_contribs | A Tensorof typefloat32. | 
| split_with_default_directions | A Tensorof typestring. |