operation| Modifier and Type | Method and Description |
|---|---|
Output<T> |
asOutput()
Returns the symbolic handle of a tensor.
|
static <T extends Number> |
create(Scope scope,
Operand<T> input,
Operand<T> filter,
Operand<T> outBackprop,
List<Long> strides,
List<Long> rates,
String padding)
Factory method to create a class to wrap a new Dilation2DBackpropFilter operation to the graph.
|
Output<T> |
filterBackprop()
3-D with shape `[filter_height, filter_width, depth]`.
|
equals, hashCode, toStringpublic static <T extends Number> Dilation2DBackpropFilter<T> create(Scope scope, Operand<T> input, Operand<T> filter, Operand<T> outBackprop, List<Long> strides, List<Long> rates, String padding)
scope - current graph scopeinput - 4-D with shape `[batch, in_height, in_width, depth]`.filter - 3-D with shape `[filter_height, filter_width, depth]`.outBackprop - 4-D with shape `[batch, out_height, out_width, depth]`.strides - 1-D of length 4. The stride of the sliding window for each dimension of
the input tensor. Must be: `[1, stride_height, stride_width, 1]`.rates - 1-D of length 4. The input stride for atrous morphological dilation.
Must be: `[1, rate_height, rate_width, 1]`.padding - The type of padding algorithm to use.public Output<T> filterBackprop()
public Output<T> asOutput()
OperandInputs to TensorFlow operations are outputs of another TensorFlow operation. This method is used to obtain a symbolic handle that represents the computation of the input.
asOutput in interface Operand<T extends Number>OperationBuilder.addInput(Output)Copyright © 2015–2019. All rights reserved.