@Namespace(value="tensorflow::ops") @NoOffset public static class tensorflow.Pad extends Pointer
input with zeros according to the paddings you
specify. paddings is an integer tensor with shape [Dn, 2], where n is the
rank of input. For each dimension D of input, paddings[D, 0] indicates
how many zeros to add before the contents of input in that dimension, and
paddings[D, 1] indicates how many zeros to add after the contents of input
in that dimension.
The padded size of each dimension D of the output is:
paddings(D, 0) + input.dim_size(D) + paddings(D, 1)
For example:
# 't' is [[1, 1], [2, 2]]
# 'paddings' is [[1, 1], [2, 2]]
# rank of 't' is 2
pad(t, paddings) ==> [[0, 0, 0, 0, 0, 0]
[0, 0, 1, 1, 0, 0]
[0, 0, 2, 2, 0, 0]
[0, 0, 0, 0, 0, 0]]
Arguments:
* scope: A Scope object
Returns:
* Output: The output tensor.Pointer.CustomDeallocator, Pointer.Deallocator, Pointer.NativeDeallocator| Constructor and Description |
|---|
Pad(Pointer p)
Pointer cast constructor.
|
Pad(tensorflow.Scope scope,
tensorflow.Input input,
tensorflow.Input paddings) |
| Modifier and Type | Method and Description |
|---|---|
tensorflow.Input |
asInput() |
tensorflow.Output |
asOutput() |
tensorflow.Node |
node() |
tensorflow.Operation |
operation() |
tensorflow.Pad |
operation(tensorflow.Operation operation) |
tensorflow.Output |
output() |
tensorflow.Pad |
output(tensorflow.Output output) |
address, asBuffer, asByteBuffer, availablePhysicalBytes, calloc, capacity, capacity, close, deallocate, deallocate, deallocateReferences, deallocator, deallocator, equals, fill, formatBytes, free, hashCode, isNull, limit, limit, malloc, maxBytes, maxPhysicalBytes, memchr, memcmp, memcpy, memmove, memset, offsetof, parseBytes, physicalBytes, position, position, put, realloc, setNull, sizeof, toString, totalBytes, totalPhysicalBytes, withDeallocator, zeropublic Pad(Pointer p)
Pointer.Pointer(Pointer).public Pad(@Const @ByRef tensorflow.Scope scope, @ByVal tensorflow.Input input, @ByVal tensorflow.Input paddings)
@ByVal @Name(value="operator tensorflow::Output") public tensorflow.Output asOutput()
@ByVal @Name(value="operator tensorflow::Input") public tensorflow.Input asInput()
public tensorflow.Node node()
@ByRef public tensorflow.Operation operation()
public tensorflow.Pad operation(tensorflow.Operation operation)
@ByRef public tensorflow.Output output()
public tensorflow.Pad output(tensorflow.Output output)
Copyright © 2019. All rights reserved.