See: Description
Interface | Description |
---|---|
Operand<T> |
Interface implemented by operands of a TensorFlow operation.
|
Class | Description |
---|---|
Graph |
A data flow graph representing a TensorFlow computation.
|
Operation |
A Graph node that performs computation on Tensors.
|
OperationBuilder | |
Output<T> |
A symbolic handle to a tensor produced by an
Operation . |
SavedModelBundle |
SavedModelBundle represents a model loaded from storage.
|
Session |
Driver for
Graph execution. |
Session.Run |
Output tensors and metadata obtained when executing a session.
|
Shape |
The possibly partially known shape of a tensor produced by an operation.
|
Tensor<T> |
A statically typed multi-dimensional array whose elements are of a type described by T.
|
TensorFlow |
Static utility methods describing the TensorFlow runtime.
|
Tensors |
Type-safe factory methods for creating
Tensor objects. |
Enum | Description |
---|---|
DataType |
Represents the type of elements in a
Tensor as an enum. |
Exception | Description |
---|---|
TensorFlowException |
Unchecked exception thrown when executing TensorFlow Graphs.
|
WARNING: The API is currently experimental and is not covered by TensorFlow API stability guarantees. See README.md for installation instructions.
The LabelImage example demonstrates use of this API to classify images using a pre-trained Inception architecture convolutional neural network. It demonstrates:
Additional examples can be found in the tensorflow/models GitHub repository.
Copyright © 2015–2018. All rights reserved.