TensorFlow is a Python library for fast numerical computing created and released by Google.
It is a foundation library that can be used to create Deep Learning models directly or by using wrapper libraries that simplify the process built on top of TensorFlow.
In this post, you will discover the TensorFlow library for Deep Learning.
What Is TensorFlow?
TensorFlow is an open-source library for fast numerical computing.
It was created and is maintained by Google and was released under the Apache 2.0 open source license. The API is nominally for the Python programming language, although there is access to the underlying C++ API.
Unlike other numerical libraries intended for use in Deep Learning like Theano, TensorFlow was designed for use both in research and development and in production systems, not least of which is RankBrain in Google search and the fun DeepDream project.
It can run on single CPU systems and GPUs, as well as mobile devices and large-scale distributed systems of hundreds of machines.
How to Install TensorFlow
Installation of TensorFlow is straightforward if you already have a Python SciPy environment.
TensorFlow works with Python 3.3+. You can follow the Download and Setup instructions on the TensorFlow website. Installation is probably simplest via PyPI, and specific instructions of the pip command to use for your Linux or Mac OS X platform are on the Download and Setup webpage. In the simplest case, you just need to enter the following in your command line:
An exception would be on the newer Mac with an Apple Silicon CPU. The package name for this specific architecture is tensorflow-macos instead:
There are also virtualenv and docker images that you can use if you prefer.
To make use of the GPU, you need to have the Cuda Toolkit installed as well.
Your First Examples in TensorFlow
Computation is described in terms of data flow and operations in the structure of a directed graph.
- Nodes: Nodes perform computation and have zero or more inputs and outputs. Data that moves between nodes are known as tensors, which are multi-dimensional arrays of real values.
- Edges: The graph defines the flow of data, branching, looping, and updates to state. Special edges can be used to synchronize behavior within the graph, for example, waiting for computation on a number of inputs to complete.
- Operation: An operation is a named abstract computation that can take input attributes and produce output attributes. For example, you could define an add or multiply operation.
Computation with TensorFlow
This first example is a modified version of the example on the TensorFlow website. It shows how you can define values as tensors and execute an operation.
Running this example displays:
Linear Regression with TensorFlow
This next example comes from the introduction in the TensorFlow tutorial.
This example shows how you can define variables (e.g., W and b) as well as variables that are the result of the computation (y).
We get some sense that TensorFlow separates the definition and declaration of the computation. Below, there is automatic differentiation under the hood. When we use the function mse_loss() to compute the difference between y and y_data, there is a graph created connecting the value produced by the function to the TensorFlow variables W and b. TensorFlow uses this graph to deduce how to update the variables inside the minimize() function.
Running this example prints the following output:
You can learn more about the mechanics of TensorFlow in the Basic Usage guide.
More Deep Learning Models
Your TensorFlow installation comes with a number of Deep Learning models that you can use and experiment with directly.
Firstly, you need to find out where TensorFlow was installed on your system. For example, you can use the following Python script:
For example, this could be:
Change to this directory and take note of the models subdirectory. Included are a number of deep learning models with tutorial-like comments, such as:
- Multi-threaded word2vec mini-batched skip-gram model
- Multi-threaded word2vec unbatched skip-gram model
- CNN for the CIFAR-10 network
- Simple, end-to-end, LeNet-5-like convolutional MNIST model example
- Sequence-to-sequence model with an attention mechanism
Also, check the examples directory, which contains an example using the MNIST dataset.
There is also an excellent list of tutorials on the main TensorFlow website. They show how to use different network types and different datasets and how to use the framework in various ways.
Finally, there is the TensorFlow playground where you can experiment with small networks right in your web browser.
TensorFlow Resources
More Resources
- TensorFlow Course on Udacity
- TensorFlow: Large-Scale Machine Learning on Heterogeneous Distributed Systems (2015)
Summary
In this post, you discovered the TensorFlow Python library for deep learning.
You learned that it is a library for fast numerical computation, specifically designed for the types of operations required to develop and evaluate large deep learning models.
Do you have any questions about TensorFlow or this post? Ask your questions in the comments, and I will do my best to answer them.

No comments:
Post a Comment