T
- data type for output()
output@Operator public final class Empty<T> extends PrimitiveOp implements Operand<T>
This operation creates a tensor of `shape` and `dtype`.
Modifier and Type | Class and Description |
---|---|
static class |
Empty.Options
Optional attributes for
Empty |
operation
Modifier and Type | Method and Description |
---|---|
Output<T> |
asOutput()
Returns the symbolic handle of a tensor.
|
static <T> Empty<T> |
create(Scope scope,
Operand<Integer> shape,
Class<T> dtype,
Empty.Options... options)
Factory method to create a class wrapping a new Empty operation.
|
static Empty.Options |
init(Boolean init) |
Output<T> |
output()
A `Tensor` of type `T`.
|
equals, hashCode, op, toString
public static <T> Empty<T> create(Scope scope, Operand<Integer> shape, Class<T> dtype, Empty.Options... options)
scope
- current scopeshape
- 1-D. Represents the shape of the output tensor.dtype
- options
- carries optional attributes valuespublic static Empty.Options init(Boolean init)
init
- If True, initialize the returned tensor with the default value of dtype. Otherwise, the implementation is free not to initializethe tensor's content.public Output<T> asOutput()
Operand
Inputs 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>
OperationBuilder.addInput(Output)
Copyright © 2022. All rights reserved.