Feature request: improve (repeated) TensorBoard startup
See original GitHub issueAfter starting up VS Code, I regularly start up TensorBoard. Two things are annoying that do not need to be:
- The prompt for the log directory could be omitted if the log directory could be remembered (or even better, configured similar to
python.pythonPath
). - The process could be made persistent*. I have a large log-file directory, and initial parsing takes several minutes until all data are available. I would not mind a TensorBoard process sticking around (and being reused) after closing (and restarting) VS Code.
(*) I usually do this from Python using
with open(log_file, "w") as stdout:
proc = subprocess.Popen(argv, stdout=stdout, stderr=subprocess.STDOUT)
Issue Analytics
- State:
- Created 3 years ago
- Comments:7
Top Results From Across the Web
Deep Dive Into TensorBoard: Tutorial With Examples
In order to do that you first have to import the TensorBoard callback. This callback is responsible for logging events such as Activation...
Read more >Introduction to TensorFlow
TensorFlow offers multiple data tools to help you consolidate, ... Analysis and TensorBoard help you track development and improvement through your model's ...
Read more >How to display the average of multiple runs on tensorboard
It's an active feature request with some progress in the last month, ... This tool can aggregate multiple tensorboard runs by their max,...
Read more >Improve Tensorflow Performance by 70% | Mux blog
In this blog, we'll focus on techniques that improve latency by optimizing both the prediction server and client.
Read more >Get started with Vertex AI TensorBoard - Google Cloud
Follow these steps to create a Vertex AI TensorBoard instance using the Google Cloud console. If you're new to Vertex AI or starting...
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 FreeTop 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
Top GitHub Comments
Oh yes, my apologies. Just created a discussion thread for that here: https://github.com/microsoft/vscode-python/discussions/15658
Thanks! Is a persistent process covered someplace else, or is that off the table for now?