T - data type for output() outputpublic final class ResizeBicubicGrad<T extends java.lang.Number> extends PrimitiveOp implements Operand<T>
| Modifier and Type | Class | Description |
|---|---|---|
static class |
ResizeBicubicGrad.Options |
Optional attributes for
ResizeBicubicGrad |
operation| Modifier and Type | Method | Description |
|---|---|---|
static ResizeBicubicGrad.Options |
alignCorners(java.lang.Boolean alignCorners) |
|
Output<T> |
asOutput() |
Returns the symbolic handle of a tensor.
|
static <T extends java.lang.Number> |
create(Scope scope,
Operand<java.lang.Float> grads,
Operand<T> originalImage,
ResizeBicubicGrad.Options... options) |
Factory method to create a class to wrap a new ResizeBicubicGrad operation to the graph.
|
Output<T> |
output() |
4-D with shape `[batch, orig_height, orig_width, channels]`.
|
clone, finalize, getClass, notify, notifyAll, wait, wait, waitequals, hashCode, toStringpublic static <T extends java.lang.Number> ResizeBicubicGrad<T> create(Scope scope, Operand<java.lang.Float> grads, Operand<T> originalImage, ResizeBicubicGrad.Options... options)
scope - current graph scopegrads - 4-D with shape `[batch, height, width, channels]`.originalImage - 4-D with shape `[batch, orig_height, orig_width, channels]`,
The image tensor that was resized.options - carries optional attributes valuespublic static ResizeBicubicGrad.Options alignCorners(java.lang.Boolean alignCorners)
alignCorners - If true, the centers of the 4 corner pixels of the input and grad tensors are
aligned. Defaults to false.public Output<T> output()
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 java.lang.Number>OperationBuilder.addInput(Output)