operation| Modifier and Type | Method and Description |
|---|---|
Output<Object> |
asOutput()
Returns the symbolic handle of a tensor.
|
static FixedLengthRecordDataset |
create(Scope scope,
Operand<String> filenames,
Operand<Long> headerBytes,
Operand<Long> recordBytes,
Operand<Long> footerBytes,
Operand<Long> bufferSize)
Factory method to create a class to wrap a new FixedLengthRecordDataset operation to the graph.
|
Output<?> |
handle() |
equals, hashCode, toStringpublic static FixedLengthRecordDataset create(Scope scope, Operand<String> filenames, Operand<Long> headerBytes, Operand<Long> recordBytes, Operand<Long> footerBytes, Operand<Long> bufferSize)
scope - current graph scopefilenames - A scalar or a vector containing the name(s) of the file(s) to be
read.headerBytes - A scalar representing the number of bytes to skip at the
beginning of a file.recordBytes - A scalar representing the number of bytes in each record.footerBytes - A scalar representing the number of bytes to skip at the end
of a file.bufferSize - A scalar representing the number of bytes to buffer. Must be > 0.public Output<?> handle()
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.