Click or drag to resize

GraphMaxPoolWithArgmax Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation MaxPoolWithArgmax(
	Output input,
	long[] ksize,
	long[] strides,
	string padding,
	Nullable<DataType> Targmax = null,
	bool include_batch_in_index = false,
	string opName = "MaxPoolWithArgmax"
)

Parameters

input
Type: Emgu.TFOutput
Input to the operation.
ksize
Type: SystemInt64
ksize
strides
Type: SystemInt64
strides
padding
Type: SystemString
padding
Targmax (Optional)
Type: SystemNullableDataType
Targmax
include_batch_in_index (Optional)
Type: SystemBoolean
include batch in index
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] output(type: DtInvalid). [1] argmax(type: DtInvalid).
See Also