aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc/api_docs/python/train.md
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2016-11-10 18:07:48 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-11-10 18:25:17 -0800
commit0409cc1e6ec08e12aaabe5dfb953b11437ae83ac (patch)
tree2448bcac6c0f49c631481750c69e31a68ee8989d /tensorflow/g3doc/api_docs/python/train.md
parent0761a8cb42a8be3b128dcc95d3e99517ade51f17 (diff)
Update generated Python Op docs.
Change: 138830335
Diffstat (limited to 'tensorflow/g3doc/api_docs/python/train.md')
-rw-r--r--tensorflow/g3doc/api_docs/python/train.md31
1 files changed, 28 insertions, 3 deletions
diff --git a/tensorflow/g3doc/api_docs/python/train.md b/tensorflow/g3doc/api_docs/python/train.md
index f82fea5c3e..35fe02d63f 100644
--- a/tensorflow/g3doc/api_docs/python/train.md
+++ b/tensorflow/g3doc/api_docs/python/train.md
@@ -4986,6 +4986,8 @@ Args:
fetches = {'step': global_step_tensor,
'ops': [train_op, check_nan_op]}
feed_dict: Exactly like the `feed_dict` argument to `Session.Run()`
+ options: Exactly like the `options` argument to `Session.run()`, i.e., a
+ config_pb2.RunOptions proto.
- - -
#### `tf.train.SessionRunArgs.__getnewargs__()` {#SessionRunArgs.__getnewargs__}
@@ -5002,7 +5004,7 @@ Exclude the OrderedDict from pickling
- - -
-#### `tf.train.SessionRunArgs.__new__(cls, fetches, feed_dict=None)` {#SessionRunArgs.__new__}
+#### `tf.train.SessionRunArgs.__new__(cls, fetches, feed_dict=None, options=None)` {#SessionRunArgs.__new__}
@@ -5028,6 +5030,13 @@ Alias for field number 1
Alias for field number 0
+- - -
+
+#### `tf.train.SessionRunArgs.options` {#SessionRunArgs.options}
+
+Alias for field number 2
+
+
- - -
@@ -5110,6 +5119,8 @@ Args:
=> results = [None, nparray(string), nparray(int)]
fetches = {'step': global_step_tensor, 'summ': summary_op}
=> results = {'step': nparray(int), 'summ': nparray(string)}
+ options: `RunOptions` from the `Session.run()` call.
+ run_metadata: `RunMetadata` from the `Session.run()` call.
- - -
#### `tf.train.SessionRunValues.__getnewargs__()` {#SessionRunValues.__getnewargs__}
@@ -5126,9 +5137,9 @@ Exclude the OrderedDict from pickling
- - -
-#### `tf.train.SessionRunValues.__new__(_cls, results)` {#SessionRunValues.__new__}
+#### `tf.train.SessionRunValues.__new__(_cls, results, options, run_metadata)` {#SessionRunValues.__new__}
-Create new instance of SessionRunValues(results,)
+Create new instance of SessionRunValues(results, options, run_metadata)
- - -
@@ -5140,11 +5151,25 @@ Return a nicely formatted representation string
- - -
+#### `tf.train.SessionRunValues.options` {#SessionRunValues.options}
+
+Alias for field number 1
+
+
+- - -
+
#### `tf.train.SessionRunValues.results` {#SessionRunValues.results}
Alias for field number 0
+- - -
+
+#### `tf.train.SessionRunValues.run_metadata` {#SessionRunValues.run_metadata}
+
+Alias for field number 2
+
+
- - -