aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar ImSheridan <xiaoyudong-512@163.com>2018-03-14 04:42:59 +0800
committerGravatar Frank Chen <frankchn@gmail.com>2018-03-13 13:42:59 -0700
commit0df9846d085ae9ad789f3834963b6cc149a648e3 (patch)
treeefa2d6e23252a8a77b171a389842208b7c1e0f7b
parentae9da822aaa5138b5473773b49d625ef694ddaa3 (diff)
Fix the broken link of tf-learn's iris tutorial also some format and typo (#17594)
* Fix the broken link of tf-learn's iris tutorial and also fix some messed up format and typo * revert a wrong typo fix
-rw-r--r--tensorflow/docs_src/programmers_guide/debugger.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/tensorflow/docs_src/programmers_guide/debugger.md b/tensorflow/docs_src/programmers_guide/debugger.md
index 5fb1c2da88..d1399814ee 100644
--- a/tensorflow/docs_src/programmers_guide/debugger.md
+++ b/tensorflow/docs_src/programmers_guide/debugger.md
@@ -459,7 +459,7 @@ accuracy_score = classifier.evaluate(x=test_set.data,
[debug_tflearn_iris.py](https://www.tensorflow.org/code/tensorflow/python/debug/examples/debug_tflearn_iris.py),
-based on {$tflearn$tf-learn's iris tutorial}, contains a full example of how to
+based on [tf-learn's iris tutorial](https://www.tensorflow.org/versions/r1.2/get_started/tflearn), contains a full example of how to
use the tfdbg with `Estimator`s. To run this example, do:
```none
@@ -753,6 +753,7 @@ There are three possible workarounds or solutions:
# For LocalCLIDebugHook
hooks = [tf_debug.LocalCLIDebugHook(dump_root="/with/lots/of/space")]
```
+
Make sure that the directory pointed to by dump_root is empty or nonexistent.
tfdbg cleans up the dump directories before exiting.
* Reduce the batch size used during the runs.