Package | Description |
---|---|
org.tensorflow |
Defines classes to build, save, load and execute TensorFlow models.
|
org.tensorflow.op |
Modifier and Type | Method and Description |
---|---|
Operation |
OperationBuilder.build()
|
Operation |
Output.op()
Returns the Operation that will produce the tensor referred to by this Output.
|
Operation |
Graph.operation(String name)
Returns the operation (node in the Graph) with the provided name.
|
Modifier and Type | Method and Description |
---|---|
Iterator<Operation> |
Graph.operations()
Iterator over all the
Operation s in the graph. |
Modifier and Type | Method and Description |
---|---|
OperationBuilder |
OperationBuilder.addControlInput(Operation control)
Ensure that the operation does not execute before the control operation does.
|
Session.Runner |
Session.Runner.addTarget(Operation operation)
|
Constructor and Description |
---|
Output(Operation op,
int idx)
Handle to the idx-th output of the Operation
op . |
Modifier and Type | Field and Description |
---|---|
protected Operation |
PrimitiveOp.operation
Underlying operation.
|
Constructor and Description |
---|
PrimitiveOp(Operation operation)
Constructor.
|
Copyright © 2015–2018. All rights reserved.