Click or drag to resize

GraphXlaReduce Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation XlaReduce(
	Output input,
	Output init_value,
	long[] dimensions_to_reduce,
	string opName = "XlaReduce"
)

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
dimensions_to_reduce
Type: SystemInt64
dimension numbers over which to reduce
opName (Optional)
Type: SystemString
The name of the operation

Return Value

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