TensorFlow is an open source numerical calculation library. The library was created by Google programmers. It provides all the tools necessary to build deep learning models and offers developers a black-box interface to program.
Simplifying machine learning workflow using TensorFlow
Getting ready
In this recipe, we will introduce the TensorFlow framework, using a simple neural network to classify the iris species. We will use the iris dataset, which has 50 samples from the following species:
- Iris setosa
- Iris virginica
- Iris versicolor
Four features are measured from each sample, namely the length and the width of the sepals and petals, in centimeters.
The following variables are contained:
- Sepal length in cm
- Sepal width...