aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/docs_src/mobile/prepare_models.md
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/docs_src/mobile/prepare_models.md')
-rw-r--r--tensorflow/docs_src/mobile/prepare_models.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/docs_src/mobile/prepare_models.md b/tensorflow/docs_src/mobile/prepare_models.md
index 8b22c04d87..2b84dbb973 100644
--- a/tensorflow/docs_src/mobile/prepare_models.md
+++ b/tensorflow/docs_src/mobile/prepare_models.md
@@ -105,8 +105,8 @@ inline constants so everything’s in one file. To handle the conversion, youâ€
need the `freeze_graph.py` script, that’s held in
[`tensorflow/python/tools/freeze_graph.py`](https://www.tensorflow.org/code/tensorflow/python/tools/freeze_graph.py). You’ll run it like this:
- bazel build tensorflow/tools:freeze_graph
- bazel-bin/tensorflow/tools/freeze_graph \
+ bazel build tensorflow/python/tools:freeze_graph
+ bazel-bin/tensorflow/python/tools/freeze_graph \
--input_graph=/tmp/model/my_graph.pb \
--input_checkpoint=/tmp/model/model.ckpt-1000 \
--output_graph=/tmp/frozen_graph.pb \