This is an automated email from the ASF dual-hosted git repository. lfrolov pushed a commit to branch DATALAB-2852 in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit 2d156a00135a8bf956b17ccacda2333b2b39143f Author: leonidfrolov <[email protected]> AuthorDate: Thu Jun 30 16:12:05 2022 +0300 [DATALAB-2852]: added TensorBoard usage to user guide --- USER_GUIDE.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/USER_GUIDE.md b/USER_GUIDE.md index f5765c775..4b08265b9 100644 --- a/USER_GUIDE.md +++ b/USER_GUIDE.md @@ -193,6 +193,13 @@ In the body of the dialog: To access analytical tool Web UI you use direct URL's (your access is established via reverse proxy, so you don't need to have Edge node tunnel up and running). + +**TensorBoard usage** + +Tensorboard, the one that can be accessed by the URL from DataLab UI uses --logdir=/var/log/tensorboard. +If another logdir is required, existing TensorBoard can be stopped from jupyter terminal using command **sudo systemctl stop tensorboard.service** and another one started instead of it from the terminal with command **source /opt/python/python3.7.9/bin/activate && export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/opt/cudnn/lib64:/usr/local/cuda/lib64; tensorboard --host 0.0.0.0 --port 6006 --logdir=/var/log/tensorboard** or from Jupyter UI with magic **%tensorboard --host 0.0.0.0 --port 6006 --l [...] +This TensorBoard will not be shown in Jupyter window, but can be accessed via TensorBoard URL from DataLab UI. + ### Manage libraries <a name="manage_libraries"></a> On every analytical tool instance you can install additional libraries by clicking on gear icon <img src="doc/gear_icon.png" alt="gear" width="20"> in the "Actions" column for a needed Notebook and hit "Manage libraries": --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
