Click or drag to resize

GraphXlaReduceWindow Method

https://www.emgu.com/wiki/index.php/Emgu_TF
Wraps the XLA ReduceWindow operator, documented at

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation XlaReduceWindow(
	Output input,
	Output init_value,
	Output window_dimensions,
	Output window_strides,
	Output base_dilations,
	Output window_dilations,
	Output padding,
	string opName = "XlaReduceWindow"
)

Parameters

input
Type: Emgu.TFOutput
Input to the operation: the input tensor
init_value
Type: Emgu.TFOutput
Input to the operation: a scalar representing the initial value for the reduction
window_dimensions
Type: Emgu.TFOutput
Input to the operation: the shape of the window
window_strides
Type: Emgu.TFOutput
Input to the operation: the inter-window strides
base_dilations
Type: Emgu.TFOutput
Input to the operation.
window_dilations
Type: Emgu.TFOutput
Input to the operation.
padding
Type: Emgu.TFOutput
Input to the operation: the padding to apply at the start and end of each input dimensions
opName (Optional)
Type: SystemString
The name of the operation

Return Value

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