■ 텐서보드를 사용하는 방법을 보여준다.
1. 아래 코드를 실행한다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import tensorflow as tf a = tf.constant(10, name = "a") b = tf.constant(90, name = "b") y = tf.Variable(a + b * 2, name = "y") model = tf.global_variables_initializer() with tf.Session() as session: merged = tf.summary.merge_all() writer = tf.summary.FileWriter("/tmp/tensorflowlogs", session.graph) session.run(model) print(session.run(y)) |
2. Anaconda Prompt를 실행하고 아래 명령을 실행한다.
▶ 실행 명령
1 2 3 |
tensorboard --logdir=/tmp/tensorflowlogs |
3. 웹 브라우저를 실행하고 아래 URL을 입력한다.
▶ URL
1 2 3 4 5 6 7 |
http://127.0.0.1:6006 또는 http://호스트명:6006 |