Tutorial by Examples

As of Tensorflow version 1.0 installation has become much easier to perform. At minimum to install TensorFlow one needs pip installed on their machine with a python version of at least 2.7 or 3.3+. pip install --upgrade tensorflow # for Python 2.7 pip3 install --upgrade tensorflow # for ...
Tensorflow is more than just a deep learning framework. It is a general computation framework to perform general mathematical operations in a parallel and distributed manner. An example of such is described below. Linear Regression A basic statistical example that is commonly utilized and is r...
Tensorflow works on principle of dataflow graphs. To perform some computation there are two steps: Represent the computation as a graph. Execute the graph. Representation: Like any directed graph a Tensorflow graph consists of nodes and directional edges. Node: A Node is also called an Op(s...
In this example we use Tensorflow to count to 10. Yes this is total overkill, but it is a nice example to show an absolute minimal setup needed to use Tensorflow import tensorflow as tf # create a variable, refer to it as 'state' and set it to 0 state = tf.Variable(0) # set one to a constan...

Page 1 of 1