Session in Tensorflow
Tensorflow Session Session Session이란 graph, tensor, operation들의 실행 환경 # 실행 환경 구성 sess = tf.Session() matrix1 = tf.constant([1, 2, 3, 4, 5, 6], shape = [2,3]) matrix2 = tf.constant([7, 8, 9, 10, 11, 12], shape = [3,2]) # cross-product...