Deep Learning & Machine Learning/강좌&예제 코드2019. 1. 22. 20:30Tensorflow 강좌 - Tensorboard 간단한 사용방법
텐서보드를 사용하여 텐서플로우의 그래프를 그리는 방법을 설명합니다. 1. 그래프를 그릴 코드를 실행합니다. 노드 생성시 name 아규먼트를 사용하여 노드에 이름을 지정해주면 tensorboard 사용시 노드에 해당 이름이 보입니다. 연산자의 경우에는 * 연산자는 mul, + 연산자는 add 처럼 미리 정해진 이름이 있습니다. import tensorflow as tf a = tf.constant(3.0, name='a') b = tf.constant(5.0, name='b') c = a * b with tf.Session() as sess: writer = tf.summary.FileWriter("./log/", sess.graph) sess.run(c) writer.close() 2. 터미널에서 ten..