tf.raw_ops.BoostedTreesUpdateEnsembleV2

Updates the tree ensemble by adding a layer to the last tree being grown

or by starting a new tree.

tree_ensemble_handleA Tensor of type resource. Handle to the ensemble variable.
feature_idsA list of at least 1 Tensor objects with type int32. Rank 1 tensor with ids for each feature. This is the real id of the feature that will be used in the split.
dimension_idsA list of Tensor objects with type int32. List of rank 1 tensors representing the dimension in each feature.
node_idsA list with the same length as dimension_ids of Tensor objects with type int32. List of rank 1 tensors representing the nodes for which this feature has a split.
gainsA list with the same length as dimension_ids of Tensor objects with type float32. List of rank 1 tensors representing the gains for each of the feature's split.
thresholdsA list with the same length as dimension_ids of Tensor objects with type int32. List of rank 1 tensors representing the thesholds for each of the feature's split.
left_node_contribsA list with the same length as dimension_ids of Tensor objects with type float32. List of rank 2 tensors with left leaf contribs for each of the feature's splits. Will be added to the previous node values to constitute the values of the left nodes.
right_node_contribsA list with the same length as dimension_ids of Tensor objects with type float32. List of rank 2 tensors with right leaf contribs for each of the feature's splits. Will be added to the previous node values to constitute the values of the right nodes.
split_typesA list with the same length as dimension_ids of Tensor objects with type string. List of rank 1 tensors representing the split type for each feature.
max_depthA Tensor of type int32. Max depth of the tree to build.
learning_rateA Tensor of type float32. shrinkage const for each new tree.
pruning_modeA Tensor of type int32. 0-No pruning, 1-Pre-pruning, 2-Post-pruning.
logits_dimensionAn optional int. Defaults to 1. scalar, dimension of the logits
nameA name for the operation (optional).

The created Operation.