Errors when serving tensorboard from subdirectory
See original GitHub issueIn my case tensorboard is served in a subdirectory: http://hostname/tensorboard/. Profile plugin fails to load bundle.js:
GET https://hostname/data/plugin/profile/bundle.js net::ERR_ABORTED 404 (Not Found)
showuld be https://hostname/tensorboard/data/plugin/profile/bundle.js.
When fixing base url of the plugin index html, new error comes from bundle.js:
GET https://hostname/tensorboard/data/plugin/profile/tools 404 (Not Found)
Is it something that can be fixed easily? Or is it Tensorboards plugin system and not the Profiler plugin itself?
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:5
Top Results From Across the Web
How can I set up Tensorboard with an arbitrary number of runs?
I have a base folder with multiple runs for Tensorboard inside subfolders, and no bare files in the root folder itself
Read more >How to serve a model with TensorFlow - Cnvrg.io
This error indicates that you didn't save the model in a sub-folder that informs TensorFlow Serving of the model version. The solution is...
Read more >Get started with TensorBoard - TensorFlow
Start TensorBoard through the command line or within a notebook experience. The two interfaces are generally the same.
Read more >Tutorials - tensorboardX documentation - Read the Docs
Google's tensorflow's tensorboard is a web server to serve visualizations of the training progress of a neural network, it visualizes scalar values, images, ......
Read more >Troubleshooting | Data Version Control - DVC
Error : No data found to visualize ... If you have connected to a non-DVC repository, then you need to specify custom files...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found

It has been modified to support sub directories. https://github.com/tensorflow/profiler/commit/4182381cfd57a6696bc4e71cbb7580e2cb6643e2
it works! thanks a lot @ydko