Click or drag to resize

GraphBoostedTreesCalculateBestFeatureSplitV2 Method

https://www.emgu.com/wiki/index.php/Emgu_TF
BoostedTreesCalculateBestFeatureSplitV2

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation BoostedTreesCalculateBestFeatureSplitV2(
	Output node_id_range,
	Output stats_summaries_list,
	Output split_types,
	Output candidate_feature_ids,
	Output l1,
	Output l2,
	Output tree_complexity,
	Output min_node_weight,
	long logits_dimension,
	string opName = "BoostedTreesCalculateBestFeatureSplitV2"
)

Parameters

node_id_range
Type: Emgu.TFOutput
Input to the operation.
stats_summaries_list
Type: Emgu.TFOutput
Input to the operation.
split_types
Type: Emgu.TFOutput
Input to the operation.
candidate_feature_ids
Type: Emgu.TFOutput
Input to the operation.
l1
Type: Emgu.TFOutput
Input to the operation.
l2
Type: Emgu.TFOutput
Input to the operation.
tree_complexity
Type: Emgu.TFOutput
Input to the operation.
min_node_weight
Type: Emgu.TFOutput
Input to the operation.
logits_dimension
Type: SystemInt64
logits dimension
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] node_ids(type: DtInt32). [1] gains(type: DtFloat). [2] feature_ids(type: DtInt32). [3] feature_dimensions(type: DtInt32). [4] thresholds(type: DtInt32). [5] left_node_contribs(type: DtFloat). [6] right_node_contribs(type: DtFloat). [7] split_with_default_directions(type: DtString).
See Also