aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/docs_src/programmers_guide/meta_graph.md
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/docs_src/programmers_guide/meta_graph.md')
-rw-r--r--tensorflow/docs_src/programmers_guide/meta_graph.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/tensorflow/docs_src/programmers_guide/meta_graph.md b/tensorflow/docs_src/programmers_guide/meta_graph.md
index add4379d7d..fa4cee8700 100644
--- a/tensorflow/docs_src/programmers_guide/meta_graph.md
+++ b/tensorflow/docs_src/programmers_guide/meta_graph.md
@@ -277,7 +277,7 @@ Here are some of the typical usage models:
* Retrieve Hyper Parameters
```Python
- filename = ".".join([tf.latest_checkpoint(train_dir), "meta"])
+ filename = ".".join([tf.train.latest_checkpoint(train_dir), "meta"])
tf.train.import_meta_graph(filename)
hparams = tf.get_collection("hparams")
```