@Operator(group="io") public final class IdentityReader extends PrimitiveOp implements Operand<java.lang.Object>
To use, enqueue strings in a Queue. ReaderRead will take the front work string and output (work, work).
| Modifier and Type | Class | Description |
|---|---|---|
static class |
IdentityReader.Options |
Optional attributes for
IdentityReader |
operation| Modifier and Type | Method | Description |
|---|---|---|
Output<java.lang.Object> |
asOutput() |
Returns the symbolic handle of a tensor.
|
static IdentityReader.Options |
container(java.lang.String container) |
|
static IdentityReader |
create(Scope scope,
IdentityReader.Options... options) |
Factory method to create a class to wrap a new IdentityReader operation to the graph.
|
Output<?> |
readerHandle() |
The handle to reference the Reader.
|
static IdentityReader.Options |
sharedName(java.lang.String sharedName) |
clone, finalize, getClass, notify, notifyAll, wait, wait, waitequals, hashCode, toStringpublic static IdentityReader create(Scope scope, IdentityReader.Options... options)
scope - current graph scopeoptions - carries optional attributes valuespublic static IdentityReader.Options container(java.lang.String container)
container - If non-empty, this reader is placed in the given container.
Otherwise, a default container is used.public static IdentityReader.Options sharedName(java.lang.String sharedName)
sharedName - If non-empty, this reader is named in the given bucket
with this shared_name. Otherwise, the node name is used instead.public Output<?> readerHandle()
public Output<java.lang.Object> 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<java.lang.Object>OperationBuilder.addInput(Output)