mirror of
https://github.com/wassname/ray.git
synced 2026-08-11 11:24:51 +08:00
[docs] docs for running Tensorboard without sudo (#5015)
* Instructions for running Tensorboard without sudo When we run Tensorboard to visualize the results of Ray outputs on multi-user clusters where we don't have sudo access, such as RISE clusters, a few commands need to first be run to make sure tensorboard can edit the tmp directory. This is a pretty common usecase so I figured we may as well put it in the documentation for Tune. * Update tune-usage.rst
This commit is contained in:
committed by
Richard Liaw
parent
e33d0eac68
commit
11ccf66346
@@ -355,6 +355,12 @@ Then, after you run a experiment, you can visualize your experiment with TensorB
|
||||
|
||||
$ tensorboard --logdir=~/ray_results/my_experiment
|
||||
|
||||
If you are running Ray on a remote multi-user cluster where you do not have sudo access, you can run the following commands to make sure tensorboard is able to write to the tmp directory:
|
||||
|
||||
.. code-block:: bash
|
||||
|
||||
$ export TMPDIR=/tmp/$USER; mkdir -p $TMPDIR; tensorboard --logdir=~/ray_results
|
||||
|
||||
.. image:: ray-tune-tensorboard.png
|
||||
|
||||
To use rllab's VisKit (you may have to install some dependencies), run:
|
||||
|
||||
Reference in New Issue
Block a user