forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Closed
Labels
area-data sciencefeature-requestRequest for new features or functionalityRequest for new features or functionality
Description
After 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)
Metadata
Metadata
Assignees
Labels
area-data sciencefeature-requestRequest for new features or functionalityRequest for new features or functionality