May 2018
Beginner
490 pages
13h 16m
English
Implementation of the McCulloch-Pitts neuron can best be viewed with TensorBoard, as shown in the following graph:

This is obtained by adding the following TensorBoard code at the end of your session. This data flow graph will help optimize a program when things go wrong.
#___________Tensorboard________________________#with tf.Session() as sess:Writer = tf.summary.FileWriter("directory on your machine", tfs.graph)Writer.close()def launchTensorBoard(): import os #os.system('tensorboard --logdir=' + 'your directory') os.system('tensorboard --logdir=' + 'your directory') returnimport threadingt = threading.Thread(target=launchTensorBoard, ...Read now
Unlock full access