Skip navigation links
A B C D F G I L M N O R S T U V W 

A

addControlInput(Operation) - Method in class org.tensorflow.OperationBuilder
Ensure that the operation does not execute before the control operation does.
addInput(Output) - Method in class org.tensorflow.OperationBuilder
 
addInputList(Output[]) - Method in class org.tensorflow.OperationBuilder
 
addTarget(String) - Method in class org.tensorflow.Session.Runner
Make Session.Runner.run() execute operation, but not return any evaluated Tensors.
addTarget(Operation) - Method in class org.tensorflow.Session.Runner
Make Session.Runner.run() execute operation, but not return any evaluated Tensors.

B

booleanValue() - Method in class org.tensorflow.Tensor
Returns the value in a scalar DataType.BOOL tensor.
build() - Method in class org.tensorflow.OperationBuilder
Add the Operation being built to the Graph.
bytesValue() - Method in class org.tensorflow.Tensor
Returns the value in a scalar DataType.STRING tensor.

C

close() - Method in class org.tensorflow.Graph
Release resources associated with the Graph.
close() - Method in class org.tensorflow.SavedModelBundle
Releases resources (the Graph and Session) associated with the saved model bundle.
close() - Method in class org.tensorflow.Session
Release resources associated with the Session.
close() - Method in class org.tensorflow.Tensor
Release resources associated with the Tensor.
copyTo(T) - Method in class org.tensorflow.Tensor
Copies the contents of the tensor to dst and returns dst.
create(Object) - Static method in class org.tensorflow.Tensor
Create a Tensor from a Java object.
create(long[], IntBuffer) - Static method in class org.tensorflow.Tensor
Create an DataType.INT32 Tensor with data from the given buffer.
create(long[], FloatBuffer) - Static method in class org.tensorflow.Tensor
Create a DataType.FLOAT Tensor with data from the given buffer.
create(long[], DoubleBuffer) - Static method in class org.tensorflow.Tensor
Create a DataType.DOUBLE Tensor with data from the given buffer.
create(long[], LongBuffer) - Static method in class org.tensorflow.Tensor
Create an DataType.INT64 Tensor with data from the given buffer.
create(DataType, long[], ByteBuffer) - Static method in class org.tensorflow.Tensor
Create a Tensor with data from the given buffer.

D

DataType - Enum in org.tensorflow
Type of elements in a Tensor.
dataType() - Method in class org.tensorflow.Output
Returns the DataType of the tensor referred to by this Output.
dataType() - Method in class org.tensorflow.Tensor
Returns the DataType of elements stored in the Tensor.
doubleValue() - Method in class org.tensorflow.Tensor
Returns the value in a scalar DataType.DOUBLE tensor.

F

feed(String, Tensor) - Method in class org.tensorflow.Session.Runner
Avoid evaluating operation and substitute t for the value it produces.
feed(String, int, Tensor) - Method in class org.tensorflow.Session.Runner
Avoid evaluating the index-th output of operation by substituting t for the value it produces.
feed(Output, Tensor) - Method in class org.tensorflow.Session.Runner
Use t instead of the Tensor referred to by executing the operation referred to by output.
fetch(String) - Method in class org.tensorflow.Session.Runner
Make Session.Runner.run() return the output of operation.
fetch(String, int) - Method in class org.tensorflow.Session.Runner
Make Session.Runner.run() return the index-th output of operation.
fetch(Output) - Method in class org.tensorflow.Session.Runner
Makes Session.Runner.run() return the Tensor referred to by output.
floatValue() - Method in class org.tensorflow.Tensor
Returns the value in a scalar DataType.FLOAT tensor.

G

Graph - Class in org.tensorflow
A data flow graph representing a TensorFlow computation.
Graph() - Constructor for class org.tensorflow.Graph
Create an empty Graph.
graph() - Method in class org.tensorflow.SavedModelBundle
Returns the graph that describes the computation performed by the model.

I

importGraphDef(byte[]) - Method in class org.tensorflow.Graph
Import a serialized representation of a TensorFlow graph.
importGraphDef(byte[], String) - Method in class org.tensorflow.Graph
Import a serialized representation of a TensorFlow graph.
index() - Method in class org.tensorflow.Output
Returns the index into the outputs of the Operation.
intValue() - Method in class org.tensorflow.Tensor
Returns the value in a scalar DataType.INT32 tensor.

L

load(String, String...) - Static method in class org.tensorflow.SavedModelBundle
Load a saved model from an export directory.
longValue() - Method in class org.tensorflow.Tensor
Returns the value in a scalar DataType.INT64 tensor.

M

make(long, long...) - Static method in class org.tensorflow.Shape
Create a Shape representing an N-dimensional value.
metadata - Variable in class org.tensorflow.Session.Run
(Experimental): Metadata about the run.
metaGraphDef() - Method in class org.tensorflow.SavedModelBundle
Returns the serialized MetaGraphDef protocol buffer associated with the saved model.

N

name() - Method in class org.tensorflow.Operation
Returns the full name of the Operation.
numBytes() - Method in class org.tensorflow.Tensor
Returns the size, in bytes, of the tensor data.
numDimensions() - Method in class org.tensorflow.Shape
Number of dimensions represented by this shape.
numDimensions() - Method in class org.tensorflow.Tensor
Returns the number of dimensions (sometimes referred to as rank) of the Tensor.
numElements() - Method in class org.tensorflow.Tensor
Returns the number of elements in a flattened (1-D) view of the tensor.
numOutputs() - Method in class org.tensorflow.Operation
Returns the number of tensors produced by this operation.

O

op() - Method in class org.tensorflow.Output
Returns the Operation that will produce the tensor referred to by this Output.
opBuilder(String, String) - Method in class org.tensorflow.Graph
Returns a builder to add Operations to the Graph.
operation(String) - Method in class org.tensorflow.Graph
Returns the operation (node in the Graph) with the provided name.
Operation - Class in org.tensorflow
A Graph node that performs computation on Tensors.
OperationBuilder - Class in org.tensorflow
A builder for Operations in a Graph.
org.tensorflow - package org.tensorflow
Defines classes to build, save, load and execute TensorFlow models.
output(int) - Method in class org.tensorflow.Operation
Returns a symbolic handle to one of the tensors produced by this operation.
Output - Class in org.tensorflow
A symbolic handle to a tensor produced by an Operation.
Output(Operation, int) - Constructor for class org.tensorflow.Output
Handle to the idx-th output of the Operation op.
outputListLength(String) - Method in class org.tensorflow.Operation
Returns the size of the list of Tensors produced by this operation.
outputs - Variable in class org.tensorflow.Session.Run
Tensors from requested fetches.

R

registeredOpList() - Static method in class org.tensorflow.TensorFlow
All the TensorFlow operations available in this address space.
Run() - Constructor for class org.tensorflow.Session.Run
 
run() - Method in class org.tensorflow.Session.Runner
Execute the graph fragments necessary to compute all requested fetches.
runAndFetchMetadata() - Method in class org.tensorflow.Session.Runner
Execute graph fragments to compute requested fetches and return metadata about the run.
runner() - Method in class org.tensorflow.Session
Create a Runner to execute graph operations and evaluate Tensors.
Runner() - Constructor for class org.tensorflow.Session.Runner
 

S

SavedModelBundle - Class in org.tensorflow
SavedModelBundle represents a model loaded from storage.
scalar() - Static method in class org.tensorflow.Shape
Create a Shape representing a scalar value.
session() - Method in class org.tensorflow.SavedModelBundle
Returns the Session with which to perform computation using the model.
Session - Class in org.tensorflow
Driver for Graph execution.
Session(Graph) - Constructor for class org.tensorflow.Session
Construct a new session with the associated Graph.
Session(Graph, byte[]) - Constructor for class org.tensorflow.Session
Construct a new session with the associated Graph and configuration options.
Session.Run - Class in org.tensorflow
Output tensors and metadata obtained when executing a session.
Session.Runner - Class in org.tensorflow
Run Operations and evaluate Tensors.
setAttr(String, String) - Method in class org.tensorflow.OperationBuilder
 
setAttr(String, byte[]) - Method in class org.tensorflow.OperationBuilder
 
setAttr(String, long) - Method in class org.tensorflow.OperationBuilder
 
setAttr(String, long[]) - Method in class org.tensorflow.OperationBuilder
 
setAttr(String, float) - Method in class org.tensorflow.OperationBuilder
 
setAttr(String, float[]) - Method in class org.tensorflow.OperationBuilder
 
setAttr(String, boolean) - Method in class org.tensorflow.OperationBuilder
 
setAttr(String, boolean[]) - Method in class org.tensorflow.OperationBuilder
 
setAttr(String, DataType) - Method in class org.tensorflow.OperationBuilder
 
setAttr(String, DataType[]) - Method in class org.tensorflow.OperationBuilder
 
setAttr(String, Tensor) - Method in class org.tensorflow.OperationBuilder
 
setAttr(String, Tensor[]) - Method in class org.tensorflow.OperationBuilder
 
setAttr(String, Shape) - Method in class org.tensorflow.OperationBuilder
 
setDevice(String) - Method in class org.tensorflow.OperationBuilder
 
setOptions(byte[]) - Method in class org.tensorflow.Session.Runner
(Experimental method): set options (typically for debugging) for this run.
shape() - Method in class org.tensorflow.Output
Returns the (possibly partially known) shape of the tensor referred to by this Output.
Shape - Class in org.tensorflow
The possibly partially known shape of a tensor produced by an operation.
shape() - Method in class org.tensorflow.Tensor
Returns the shape of the Tensor, i.e., the sizes of each dimension.
size(int) - Method in class org.tensorflow.Shape
The size of the i-th dimension.

T

Tensor - Class in org.tensorflow
A typed multi-dimensional array.
TensorFlow - Class in org.tensorflow
Static utility methods describing the TensorFlow runtime.
TensorFlowException - Exception in org.tensorflow
Unchecked exception thrown when executing TensorFlow Graphs.
toGraphDef() - Method in class org.tensorflow.Graph
Generate a serialized representation of the Graph.
toString() - Method in class org.tensorflow.Shape
Succint description of the shape meant for debugging.
toString() - Method in class org.tensorflow.Tensor
Returns a string describing the type and shape of the Tensor.
type() - Method in class org.tensorflow.Operation
Returns the type of the operation, i.e., the name of the computation performed by the operation.

U

unknown() - Static method in class org.tensorflow.Shape
Create a Shape representing an unknown number of dimensions.

V

valueOf(String) - Static method in enum org.tensorflow.DataType
Returns the enum constant of this type with the specified name.
values() - Static method in enum org.tensorflow.DataType
Returns an array containing the constants of this enum type, in the order they are declared.
version() - Static method in class org.tensorflow.TensorFlow
Returns the version of the underlying TensorFlow runtime.

W

writeTo(IntBuffer) - Method in class org.tensorflow.Tensor
Write the data of a DataType.INT32 tensor into the given buffer.
writeTo(FloatBuffer) - Method in class org.tensorflow.Tensor
Write the data of a DataType.FLOAT tensor into the given buffer.
writeTo(DoubleBuffer) - Method in class org.tensorflow.Tensor
Write the data of a DataType.DOUBLE tensor into the given buffer.
writeTo(LongBuffer) - Method in class org.tensorflow.Tensor
Write the data of a DataType.INT64 tensor into the given buffer.
writeTo(ByteBuffer) - Method in class org.tensorflow.Tensor
Write the tensor data into the given buffer.
A B C D F G I L M N O R S T U V W 
Skip navigation links

Copyright © 2015–2017. All rights reserved.