Package | Description |
---|---|
org.tensorflow |
Defines classes to build, save, load and execute TensorFlow models.
|
org.tensorflow.op | |
org.tensorflow.op.core |
Modifier and Type | Method and Description |
---|---|
Output<T> |
Output.asOutput() |
Output<T> |
Operand.asOutput()
Returns the symbolic handle of a tensor.
|
<T> Output<T> |
Operation.output(int idx)
Returns a symbolic handle to one of the tensors produced by this operation.
|
Output<?>[] |
Operation.outputList(int idx,
int length)
Returns symbolic handles to a list of tensors produced by this operation.
|
Modifier and Type | Method and Description |
---|---|
OperationBuilder |
OperationBuilder.addInput(Output<?> input)
Returns the builder to create an operation.
|
OperationBuilder |
OperationBuilder.addInputList(Output<?>[] inputs) |
Session.Runner |
Session.Runner.feed(Output<?> o,
Tensor<?> t)
Use
t instead of the Tensor referred to by executing the operation referred to by
output . |
Session.Runner |
Session.Runner.fetch(Output<?> output)
Makes
Session.Runner.run() return the Tensor referred to by output . |
Modifier and Type | Method and Description |
---|---|
static Output<?>[] |
Operands.asOutputs(Iterable<? extends Operand<?>> inputs)
|
Modifier and Type | Method and Description |
---|---|
Output<T> |
Constant.asOutput() |
Copyright © 2015–2018. All rights reserved.