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
Syntaxpublic Operation XlaPad(
Output input,
Output padding_value,
Output padding_low,
Output padding_high,
Output padding_interior,
string opName = "XlaPad"
)
Public Function XlaPad (
input As Output,
padding_value As Output,
padding_low As Output,
padding_high As Output,
padding_interior As Output,
Optional opName As String = "XlaPad"
) As Operation
public:
Operation^ XlaPad(
Output^ input,
Output^ padding_value,
Output^ padding_low,
Output^ padding_high,
Output^ padding_interior,
String^ opName = L"XlaPad"
)
member XlaPad :
input : Output *
padding_value : Output *
padding_low : Output *
padding_high : Output *
padding_interior : Output *
?opName : string
(* Defaults:
let _opName = defaultArg opName "XlaPad"
*)
-> Operation
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