Skip to content

Files

Latest commit

7d22fb1 · Mar 4, 2017

History

History
This branch is 75 commits behind nfmcclure/tensorflow_cookbook:master.

02_Layering_Nested_Operations

Multiple Operations on a Computational Graph

Summary

In this script, we will create an array and perform two multiplications on it, followed by addition:

output = (input) * (m1) * (m2) + (a1)

Computational Graph Output

Viewing the computational graph in Tensorboard:

Multiple Operations