November 2017
Intermediate to advanced
274 pages
6h 16m
English
Input external data to TensorFlow objects:
a = np.zeros((3,3))ta = tf.convert_to_tensor(a)with tf.Session() as sess: print(sess.run(ta))
The preceding code gives the following output:
[[ 0. 0. 0.] [ 0. 0. 0.] [ 0. 0. 0.]]
Read now
Unlock full access