The required data can be added during the actual runtime from any external
sources.
Syntax:
placeholder(dtype, shape=None, name=None)
-------------
HandsOn - TensorFlow Basic Hands_on
matrix1 = np.array([[1,3,4],[3,5,3],[4,5,3]])
matrix2 = np.array([[2,5,7],[3,6,8],[2,6,9]])
tf_mat1 = tf.convert_to_tensor(matrix1, dtype=tf.float64)
tf_mat2 = tf.convert_to_tensor(matrix2, dtype=tf.float64)
a = tf_mat1
b = tf_mat2
init = a * b
final_mat1 = tf.multiply(a, b)
b_inv = tf.transpose(b)final_mat2 = tf.tensordot(a, b_inv, 1)---------------
Which one of the following would you use to pass data to placeholder during