Click or drag to resize

GraphXlaVariadicReduce Method

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

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

Parameters

input
Type: Emgu.TFOutput
Input to the operation: the input tensor(s)
init_value
Type: Emgu.TFOutput
Input to the operation: scalar initial value(s) 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