-
Notifications
You must be signed in to change notification settings - Fork 74.7k
[Windows] tensorboard - needs to be started from same drive as logdir #7856
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
ditto, win7 64 tensorflow v1.0.0 no gpu. as implied by @enpasos, there are no error messages in console or web ETA: with the --inspect flag tensorboard seems to be finding and reading the files fine... some but not all file reading methods are drive letter aware? |
Unfortunately TensorBoard uses a colon as the separator between the optional "run name" and the path in the As a quick workaround, you could avoid this problem by always specifying an explicit run name as part of the
(Reassigning to @dandelionmane, who shows up on the blame for the relevant code.) |
Migrated this to tensorflow/tensorboard. |
It still can't load data though using the same driver's name |
@mrry |
@enpasos Works on Windows 10, 64-bit with Python 3.5. Point to be noted, you should be in the drive only and not even inside the log folder. Works only when inside D:> not when in the complete log path. Only issue I had was to I had to execute it with python instead using tensorboard directly. |
I resolved the problem using double-quotes: Windows 7, 64bit, cygwin, python 3 |
Windows 10, Pytorch 1.4.0 GPU, |
|
Worked perfectly for me.
|
OS: Windows 10 (64 bit)
TensorFlow Version: 1.0.0
CUDA: 8.0
GPU: yes
Problem:
C:>tensorboard --logdir=E:\tmp\tensorflow\mnist\logs
=> tensorboard starts without loading data (not working and difficult to detect reason)
E:>tensorboard --logdir=E:\tmp\tensorflow\mnist\logs
=> tensorboard starts with loading data (works perfectly)
The text was updated successfully, but these errors were encountered: