Before applying an FNN to a problem, an architecture of the network must be built. A TensorFlow architecture and solution to the XOR function is the place to start. The architecture of the example differs from the vintage, built-from-scratch solution but the concepts remain the same.
Building the architecture of an FNN with TensorFlow
Writing code using the data flow graph as an architectural roadmap
TensorFlow is a graph-driven solution based on graph theory, a branch of mathematics. Designing deep learning without graphs would prove quite difficult. My XOR FNN built from scratch in Chapter 4, Become an Unconventional Innovator, fits the need of the case study described. However, if thousands of nodes are required, TensorFlow...