fhieber commented on a change in pull request #10139: [REQUEST FOR REVIEW] [MXNET-109] Logging APIs for Visualizing MXNet Data in TensorBoard URL: https://github.com/apache/incubator-mxnet/pull/10139#discussion_r175684629
########## File path: docs/api/python/contrib/summary.md ########## @@ -0,0 +1,258 @@ +# Logging MXNet Data for Visualization in TensorBoard + +## Overview + +The module `mxnet.contrib.summary` enables MXNet users to visualize data in +[TensorBoard](https://www.tensorflow.org/programmers_guide/summaries_and_tensorboard). +Please note that this module only provides the APIs for data logging. For visualization, +users still need to install TensorBoard. + +### How to install TensorBoard +To launch TensorBoard for visualization, make sure you have the +[official release of TensorBoard](https://pypi.python.org/pypi/tensorboard) installed. +You can type `pip install tensorboard` on you machine to install TensorBoard. + +### How to launch TensorBoard +After you installed the TensorBoar Python package, type the following command in the terminal +to launch TensorBoard: +``` +tensorborad --logdir=/path/to/your/log/dir --host=your_host_ip --port=your_port_number Review comment: typo here and in line 23: tensorborad -> tensorboard ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
