Click or drag to resize

GraphXlaSelectAndScatter Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation XlaSelectAndScatter(
	Output operand,
	Output window_dimensions,
	Output window_strides,
	Output padding,
	Output source,
	Output init_value,
	string opName = "XlaSelectAndScatter"
)

Parameters

operand
Type: Emgu.TFOutput
Input to the operation: the input tensor
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
padding
Type: Emgu.TFOutput
Input to the operation: the padding to apply at the start and end of each input dimensions
source
Type: Emgu.TFOutput
Input to the operation: a tensor of values to scatter
init_value
Type: Emgu.TFOutput
Input to the operation: a scalar representing the initial value for the output tensor
opName (Optional)
Type: SystemString
The name of the operation

Return Value

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