-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
Bug: Image Summaries not displayed (E0905 Error on request) #477
Comments
To be clear, is |
It's one single directory name. There are originally no spaces in that name at all, the + signs seem to have gotten lost in the copy'n'paste, but you can still see them in the screenshot. |
(or maybe the bug itself is that the '+' sign gets lost somewhere within TB?) |
I can repro. The run seen by TensorBoard is indeed It seems like werkzeug is losing + characters and replacing them with spaces while decoding the GET param. Let me think about what we can do ... |
For now, indeed not using + in directory names will let you circumvent this issue. On our side, we should still fix this issue though because it is unexpected to users. |
The frontend should use encodeURIComponent("a+b") // "a%2Bb" |
Ah, it's a good thing you chimed in. I was thinking over why |
This change encodes the names of runs and tags included within the GET parameters of URIs for the audio, image, and pr_curve plugins. We pass those run and tag names into encodeURIComponent. Fixes #477. I verified that the audio, image, and PR curve plugins WAI.
This change encodes the names of runs and tags included within the GET parameters of URIs for the audio, image, and pr_curve plugins. We pass those run and tag names into encodeURIComponent. Fixes #477. I verified that the audio, image, and PR curve plugins WAI.
This change encodes the names of runs and tags included within the GET parameters of URIs for the audio, image, and pr_curve plugins. We pass those run and tag names into encodeURIComponent. Fixes tensorflow#477. I verified that the audio, image, and PR curve plugins WAI.
This change encodes the names of runs and tags included within the GET parameters of URIs for the audio, image, and pr_curve plugins. We pass those run and tag names into encodeURIComponent. Fixes #477. I verified that the audio, image, and PR curve plugins WAI.
I'm using Tensorflow 1.3, and have image summaries in my code that I would like to display in TB. However, when I switch to the "image" tab in the browser I see only empty images:
The following error appears in the shell where TB has been started:
As the
KeyError
also indicates, I think this is due to the name of the directory containing the logfile information ("170905_1632_gdcgan_ddcgan-big_z32_l1e-05_l2p0e 00_d3_eps1.00_lds1e 00_smry", because if I start TB inside of this directory, then the images are displayed without problems).The text was updated successfully, but these errors were encountered: