aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--tensorflow/g3doc/api_docs/python/functions_and_classes/shard0/tf.train.SessionRunArgs.__new__.md2
-rw-r--r--tensorflow/g3doc/api_docs/python/functions_and_classes/shard7/tf.train.SessionRunValues.md20
-rw-r--r--tensorflow/g3doc/api_docs/python/functions_and_classes/shard8/tf.train.SessionRunArgs.md11
-rw-r--r--tensorflow/g3doc/api_docs/python/functions_and_classes/shard9/tf.train.SessionRunValues.__new__.md4
-rw-r--r--tensorflow/g3doc/api_docs/python/train.md31
5 files changed, 59 insertions, 9 deletions
diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard0/tf.train.SessionRunArgs.__new__.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard0/tf.train.SessionRunArgs.__new__.md
index 90f2e21507..2dd4d8c8b3 100644
--- a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard0/tf.train.SessionRunArgs.__new__.md
+++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard0/tf.train.SessionRunArgs.__new__.md
@@ -1,4 +1,4 @@
-#### `tf.train.SessionRunArgs.__new__(cls, fetches, feed_dict=None)` {#SessionRunArgs.__new__}
+#### `tf.train.SessionRunArgs.__new__(cls, fetches, feed_dict=None, options=None)` {#SessionRunArgs.__new__}
diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard7/tf.train.SessionRunValues.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard7/tf.train.SessionRunValues.md
index 521733d01f..7856c8bf92 100644
--- a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard7/tf.train.SessionRunValues.md
+++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard7/tf.train.SessionRunValues.md
@@ -13,6 +13,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__}
@@ -29,9 +31,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)
- - -
@@ -43,8 +45,22 @@ 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
+
+
diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard8/tf.train.SessionRunArgs.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard8/tf.train.SessionRunArgs.md
index fcc2b1794c..85695d22be 100644
--- a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard8/tf.train.SessionRunArgs.md
+++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard8/tf.train.SessionRunArgs.md
@@ -11,6 +11,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__}
@@ -27,7 +29,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__}
@@ -53,3 +55,10 @@ Alias for field number 1
Alias for field number 0
+- - -
+
+#### `tf.train.SessionRunArgs.options` {#SessionRunArgs.options}
+
+Alias for field number 2
+
+
diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard9/tf.train.SessionRunValues.__new__.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard9/tf.train.SessionRunValues.__new__.md
index f75257b6a1..3540616254 100644
--- a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard9/tf.train.SessionRunValues.__new__.md
+++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard9/tf.train.SessionRunValues.__new__.md
@@ -1,4 +1,4 @@
-#### `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)
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
+
+
- - -