TFLearn is a modular library in Python that is built on top of core TensorFlow.
TFLearn is different from the TensorFlow Learn package which is also known as TF Learn (with one space in between TF and Learn). TFLearn is available at the following link: http://tflearn.org, and the source code is available on GitHub at the following link: https://github.com/tflearn/tflearn.
TFLearn can be installed in Python 3 with the following command:
pip3 install tflearn
To install TFLearn in other environments or from source, please refer to the following link: http://tflearn.org/installation/.
The simple workflow in TFLearn is as follows:
- Create an input layer first.
- Pass the input object to create further layers.
- Add the output layer.
- Create the net using an estimator layer such as regression.
- Create a model from the net created in the previous step.
- Train the model with the model...