September 2017
Intermediate to advanced
622 pages
15h 13m
English
TensorFlow relies on building a computation graph at its core, and it uses this computation graph to derive relationships between tensors from the input all the way to the output. Let's say, we have rank 0 (scalar) tensors a, b, and c and we want to evaluate
. This evaluation can be represented as a computation graph, as shown in the following figure:

As we can see, the computation graph is simply a network of nodes. Each node resembles an operation, which applies a function to its input tensor or tensors ...