Click or drag to resize

GraphXlaIf Method

https://www.emgu.com/wiki/index.php/Emgu_TF
output = cond ? then_branch(inputs) : else_branch(inputs).

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation XlaIf(
	Output cond,
	Output inputs,
	DataType[] Tout,
	string opName = "XlaIf"
)

Parameters

cond
Type: Emgu.TFOutput
Input to the operation: A boolean scalar.
inputs
Type: Emgu.TFOutput
Input to the operation: A list of input tensors.
Tout
Type: Emgu.TFDataType
Tout
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] output(type: DtInvalid): A list of tensors returned by either then_branch(inputs) or else_branch(inputs). The input shapes of the then_branch and else_branch must match.
See Also