Click or drag to resize

GraphBoostedTreesTrainingPredict Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation BoostedTreesTrainingPredict(
	Output tree_ensemble_handle,
	Output cached_tree_ids,
	Output cached_node_ids,
	Output bucketized_features,
	long logits_dimension,
	string opName = "BoostedTreesTrainingPredict"
)

Parameters

tree_ensemble_handle
Type: Emgu.TFOutput
Input to the operation.
cached_tree_ids
Type: Emgu.TFOutput
Input to the operation.
cached_node_ids
Type: Emgu.TFOutput
Input to the operation.
bucketized_features
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] partial_logits(type: DtFloat). [1] tree_ids(type: DtInt32). [2] node_ids(type: DtInt32).
See Also