Deep Learning Interview Questions Answers - Tensorflow


TensorFlow sessions can be created as tf.Session()
In order to run the data flow graph, we use a TensorFlow session.
Every computation in TensorFlow is represented by a graph called data flow graph or computational graph. It consists of several nodes and edges, where nodes are mathematical operations, such as addition and multiplication, and edges are tensors.
A tensor is a multidimensional array.