Skip to content

Commit

Permalink
Small fix on TensorBoard visualization section
Browse files Browse the repository at this point in the history
  • Loading branch information
Marianne Linhares Monteiro authored Nov 2, 2017
1 parent 3f5dbba commit e723536
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions tutorials/image/cifar10_estimator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -465,22 +465,21 @@ allow_soft_placement: true
2017-07-31 22:54:58.929873: I tensorflow/core/distributed_runtime/rpc/grpc_server_lib.cc:316] Started server with target: grpc://localhost:8000
```

## Visualizing results with TensorFlow
## Visualizing results with TensorBoard

When using Estimators you can also visualize your data in TensorBoard, with no
changes in your code. You can use TensorBoard to visualize your TensorFlow
graph, plot quantitative metrics about the execution of your graph, and show
additional data like images that pass through it.

You'll see something similar to this if you "point" TensorBoard to the
`model_dir` you used to train or evaluate your model.
`job dir` parameter you used to train or evaluate your model.

Check TensorBoard during training or after it. Just point TensorBoard to the
model_dir you chose on the previous step by default the model_dir is
"sentiment_analysis_output"
model_dir you chose on the previous step.

```shell
tensorboard --log-dir="sentiment_analysis_output"
tensorboard --log-dir="<job dir>"
```

## Warnings
Expand Down

0 comments on commit e723536

Please sign in to comment.