July 2018
Beginner to intermediate
312 pages
8h 31m
English
We will look at an example of adding two numbers using TensorFlow. A placeholder is a node in a TensorFlow graph to which values can be passed during a session. A session is when the graph is initialized and ready to process the values:
a = tf.Placeholder(tf.int32)b = tf.Placeholder(tf.int32)
c = a + b
values = {a: 5, b: 3}
Read now
Unlock full access