| Modifier and Type | Class and Description |
|---|---|
static class |
TextLineReader.Options
Optional attributes for
TextLineReader |
operation| Modifier and Type | Method and Description |
|---|---|
Output<Object> |
asOutput()
Returns the symbolic handle of a tensor.
|
static TextLineReader.Options |
container(String container) |
static TextLineReader |
create(Scope scope,
TextLineReader.Options... options)
Factory method to create a class to wrap a new TextLineReader operation to the graph.
|
Output<?> |
readerHandle()
The handle to reference the Reader.
|
static TextLineReader.Options |
sharedName(String sharedName) |
static TextLineReader.Options |
skipHeaderLines(Long skipHeaderLines) |
equals, hashCode, toStringpublic static TextLineReader create(Scope scope, TextLineReader.Options... options)
scope - current graph scopeoptions - carries optional attributes valuespublic static TextLineReader.Options skipHeaderLines(Long skipHeaderLines)
skipHeaderLines - Number of lines to skip from the beginning of every file.public static TextLineReader.Options container(String container)
container - If non-empty, this reader is placed in the given container.
Otherwise, a default container is used.public static TextLineReader.Options sharedName(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<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<Object>OperationBuilder.addInput(Output)Copyright © 2015–2019. All rights reserved.