aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <nobody@tensorflow.org>2016-05-19 17:18:35 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-05-19 18:23:01 -0700
commit11105f77bcda3c87501d2ba4067bbda03f5bf60a (patch)
tree329127c5f8a4c8c5c792a6a5c3909538fd2fd04e
parentdcbe2c1c56944cfb34b2c52ce24bdfc7271aebbd (diff)
Update generated Python Op docs.
Change: 122790948
-rw-r--r--tensorflow/g3doc/api_docs/python/functions_and_classes/tf.train.write_graph.md5
-rw-r--r--tensorflow/g3doc/api_docs/python/train.md5
2 files changed, 6 insertions, 4 deletions
diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/tf.train.write_graph.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/tf.train.write_graph.md
index 2d3c188911..eea9025321 100644
--- a/tensorflow/g3doc/api_docs/python/functions_and_classes/tf.train.write_graph.md
+++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/tf.train.write_graph.md
@@ -1,6 +1,6 @@
### `tf.train.write_graph(graph_def, logdir, name, as_text=True)` {#write_graph}
-Writes a graph proto on disk.
+Writes a graph proto to a file.
The graph is written as a binary proto unless `as_text` is `True`.
@@ -14,7 +14,8 @@ tf.train.write_graph(sess.graph_def, '/tmp/my-model', 'train.pbtxt')
* <b>`graph_def`</b>: A `GraphDef` protocol buffer.
-* <b>`logdir`</b>: Directory where to write the graph.
+* <b>`logdir`</b>: Directory where to write the graph. This can refer to remote
+ filesystems, such as Google Cloud Storage (GCS).
* <b>`name`</b>: Filename for the graph.
* <b>`as_text`</b>: If `True`, writes the graph as an ASCII proto.
diff --git a/tensorflow/g3doc/api_docs/python/train.md b/tensorflow/g3doc/api_docs/python/train.md
index 5a127c12b5..b15229ce20 100644
--- a/tensorflow/g3doc/api_docs/python/train.md
+++ b/tensorflow/g3doc/api_docs/python/train.md
@@ -3346,7 +3346,7 @@ global_step: 10
### `tf.train.write_graph(graph_def, logdir, name, as_text=True)` {#write_graph}
-Writes a graph proto on disk.
+Writes a graph proto to a file.
The graph is written as a binary proto unless `as_text` is `True`.
@@ -3360,7 +3360,8 @@ tf.train.write_graph(sess.graph_def, '/tmp/my-model', 'train.pbtxt')
* <b>`graph_def`</b>: A `GraphDef` protocol buffer.
-* <b>`logdir`</b>: Directory where to write the graph.
+* <b>`logdir`</b>: Directory where to write the graph. This can refer to remote
+ filesystems, such as Google Cloud Storage (GCS).
* <b>`name`</b>: Filename for the graph.
* <b>`as_text`</b>: If `True`, writes the graph as an ASCII proto.