Skip to content

Latest commit

 

History

History
 
 

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