텐서보드 버그
windows7 에서
tensorflow version : 1.2.1
C:\Users\Administrator> tensorboard --logdir=D:\.........................\tmp\mnist_sl_logs
로 실행시키면
http://localhost:6006 에서 다음과 같은 메시지가 나온다.
No scalar data was found.
No graph definition files were found.
inspect 명령어를 사용하면 다음과 같이 내용이 존재하는데도 말이다.
C:\Users\Administrator>tensorboard --inspect --logdir=D:\......................................\tmp\mnist_sl_logs
======================================================================
Processing event files... (this can take a few minutes)
======================================================================
Found event files in:
D:\......................................\tmp\mnist_sl_logs
These tags are in D:\......................................\tmp\mnist_sl_logs:
audio -
histograms
biases_hidden
biases_output
weights_hidden
weights_output
images -
scalars
accuracy
loss
tensor -
======================================================================
Event statistics for D:\......................................\tmp\mnist_sl_logs:
audio -
graph
first_step 0
last_step 0
max_step 0
min_step 0
num_steps 1
outoforder_steps []
histograms
first_step 100
last_step 2000
max_step 2000
min_step 100
num_steps 20
outoforder_steps [(2000, 100)]
images -
scalars
first_step 100
last_step 2000
max_step 2000
min_step 100
num_steps 20
outoforder_steps [(2000, 100)]
sessionlog:checkpoint -
sessionlog:start -
sessionlog:stop -
tensor -
======================================================================
해결
위의 경우 C drive에서 D drive에 있는 log 파일경로를 사용하고 있다.
> log 위치와 같은 disk drive에서 tensorboard를 실행시켜라!!!!
D:\> tensorboard --logdir=D:\.........................\tmp\mnist_sl_logs
출처: https://github.com/tensorflow/tensorflow/issues/7856