Documentation - unable to add the information displayed in the terminal (default logging) to tensor board for plotting
See original GitHub issueHi, The documentation says
All the information displayed in the terminal (default logging) can be also logged in tensorboard. For that, you need to define several environment variables:
# formats are comma-separated, but for tensorboard you only need the last one
# stdout -> terminal
export OPENAI_LOG_FORMAT='stdout,log,csv,tensorboard'
export OPENAI_LOGDIR=path/to/tensorboard/data
This part is bit unclear, where should I set/run or execute the above two line
I am clear with the below part and to configure the logger using:
from stable_baselines.logger import configure
configure()
And this part generally I do in ananconda promt Then start tensorboard with:
tensorboard --logdir=$OPENAI_LOGDIR
Thank you
Issue Analytics
- State:
- Created 4 years ago
- Comments:10
Top Results From Across the Web
Get started with TensorBoard - TensorFlow
It enables tracking experiment metrics like loss and accuracy, visualizing the model graph, projecting embeddings to a lower dimensional space, ...
Read more >Deep Dive Into TensorBoard: Tutorial With Examples
The tool enables you to track various metrics such as accuracy and log loss on training or validation set. As we shall see...
Read more >TensorBoard Tutorial: Run Examples & Use Logdir - DataCamp
Learn how to use TensorBoard with our step-by-step tutorial. Find run examples and organize your data with multiple logdirs.
Read more >Tensorboard Integration - Stable Baselines - Read the Docs
To use Tensorboard with the rl baselines, you simply need to define a log ... All the information displayed in the terminal (default...
Read more >Use TensorBoard in Amazon SageMaker Studio
Back to the Launcher, click the Create notebook tile. Your notebook launches and opens in a new Studio tab. Run this code from...
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
worked in windows. You can close the issue
Dear @araffin,
Thank you for the reply.
I have not understood if I can retrieve a .csv file containing the data shown in the terminal during the training process after finishing the training. Also, since the export commands are bash commands, where does
from stable_baselines.logger import configure
andconfigure()
go? Can I make this work in zoo?For the other questions, thank you very much for providing info, I will surely read what you suggested in order to better grasp what is displayed.
Best regards