May 2018
Beginner
490 pages
13h 16m
English
First import TensorFlow with the following code:
import tensorflow as tf
Then use the following code to give a name of the scope of each object you want to display in one line. Write your variable or object on the second line and include it in the TensorBoard summary as an image (histograms, scalars, and other summaries are possible), as shown in the following code:
with tf.name_scope("Input"): x_ = tf.placeholder(tf.float32, shape=[4,2], name = 'x-input-predicates') tf.summary.image('input predicates x', x_, 10)
Repeat that with all the elements ...
Read now
Unlock full access