Consider Stack Overflow for getting support using TensorBoard - they have a larger community with better searchability:
https://stackoverflow.com/questions/tagged/tensorboard
For bug reports, please include the following:
tensorboard) 1.8.0Please describe the bug as clearly as possible, and if possible provide a minimal example (code, data, and/or command line) to reproduce the issue. Thanks!
How can I pass a logdir with comma in it? It's not work even I put the path in the quotes.
Commas are interpreted as separating multiple logdirs passed to the --logdir flag as a single argument, so they can't be present in the directory names as it currently works.
You have a few options:
I tried 3 firstly, it works until I got more than one dir whose name contains ",".
Then I go with 1 and changed a lot of code and folder name :(
I think it's a bad design if it cannot support dir name with "," since it's a valid char for dir name.
And I wish it could support wildcards.
We also don't support colons probably. We could probably run the logdirs through a URI decoder, so you can specify those commas as hex. See also argparse change in https://github.com/tensorflow/tensorboard/issues/1221
We should fix this by 1) making it more obvious that a special interpretation is happening, 2) giving a way to escape/avoid this interpretation, and 3) ideally changing this feature to conflict less with valid directory names.
In the mean time, a workaround is to use another name to refer to the directory - e.g. creating a symlink, or by CD'ing into it and using "./" as described in #2229.
For the colon case, it should also I think be possible to work around it by adding a prefix name with a colon, e.g. for --logdir /tmp/foo:bar instead pass --logdir myname:/tmp/foo:bar.
Most helpful comment
We also don't support colons probably. We could probably run the logdirs through a URI decoder, so you can specify those commas as hex. See also argparse change in https://github.com/tensorflow/tensorboard/issues/1221