| Modifier and Type | Class and Description |
|---|---|
static class |
Conv3DBackpropFilter.Options
Optional attributes for
Conv3DBackpropFilter |
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,
String padding,
Conv3DBackpropFilter.Options... options)
Factory method to create a class to wrap a new Conv3DBackpropFilter operation to the graph.
|
static Conv3DBackpropFilter.Options |
dilations(List<Long> dilations) |
Output<T> |
output() |
equals, hashCode, toStringpublic static <T extends Number> Conv3DBackpropFilter<T> create(Scope scope, Operand<T> input, Operand<T> filter, Operand<T> outBackprop, List<Long> strides, String padding, Conv3DBackpropFilter.Options... options)
scope - current graph scopeinput - Shape `[batch, depth, rows, cols, in_channels]`.filter - Shape `[depth, rows, cols, in_channels, out_channels]`.
`in_channels` must match between `input` and `filter`.outBackprop - Backprop signal of shape `[batch, out_depth, out_rows, out_cols,
out_channels]`.strides - 1-D tensor of length 5. The stride of the sliding window for each
dimension of `input`. Must have `strides[0] = strides[4] = 1`.padding - The type of padding algorithm to use.options - carries optional attributes valuespublic static Conv3DBackpropFilter.Options dilations(List<Long> dilations)
dilations - 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.