Click or drag to resize

GraphXlaPad Method

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

Namespace:  Emgu.TF
Assembly:  Emgu.TF.Netstandard (in Emgu.TF.Netstandard.dll) Version: 2.6.0.1294
Syntax
public Operation XlaPad(
	Output input,
	Output padding_value,
	Output padding_low,
	Output padding_high,
	Output padding_interior,
	string opName = "XlaPad"
)

Parameters

input
Type: Emgu.TFOutput
Input to the operation: A `Tensor` of type T.
padding_value
Type: Emgu.TFOutput
Input to the operation: A scalar `Tensor` of type T.
padding_low
Type: Emgu.TFOutput
Input to the operation: the padding to apply at the start of each input dimensions. Must be a compile-time constant 1D tensor of length equal to rank of input.
padding_high
Type: Emgu.TFOutput
Input to the operation: the padding to apply at the end of each input dimension. Must be a compile-time constant 1D tensor of length equal to rank of input.
padding_interior
Type: Emgu.TFOutput
Input to the operation: the padding to apply between each input element. Must be a compile-time constant 1D tensor of length equal to rank of input, containing only non-negative values.
opName (Optional)
Type: SystemString
The name of the operation

Return Value

Type: Operation
The operation, where: [0] output(type: DtInvalid): A `Tensor` of type T.
See Also