Click or drag to resize

GraphApproxTopK Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF (in Emgu.TF.dll) Version: 2.16.1.1620+d2904aaafaa66327b642f4fbd5e3c7133dd331e0
Syntax
public Operation ApproxTopK(
	Output input,
	long k,
	long reduction_dimension = -1,
	float recall_target = 0.95f,
	bool is_max_k = true,
	long reduction_input_size_override = -1,
	bool aggregate_to_topk = true,
	string opName = "ApproxTopK"
)

Parameters

input
Type: Emgu.TFOutput
Input to the operation.
k
Type: SystemInt64
k
reduction_dimension (Optional)
Type: SystemInt64
reduction dimension
recall_target (Optional)
Type: SystemSingle
recall target
is_max_k (Optional)
Type: SystemBoolean
is max k
reduction_input_size_override (Optional)
Type: SystemInt64
reduction input size override
aggregate_to_topk (Optional)
Type: SystemBoolean
aggregate to topk
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] values(type: DtInvalid). [1] indices(type: DtInt32).
See Also