aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2016-12-15 15:57:19 -0800
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2016-12-15 16:11:11 -0800
commit7b6d8ada59346b11a1526af265fc38cc2a0fa9a3 (patch)
tree03d99f0f9c593619756c100832c655b2ea9e6775
parent5f8670a70a99a4e64fe9e803663e78b6a9db6264 (diff)
Update generated Python Op docs.
Change: 142199921
-rw-r--r--tensorflow/g3doc/api_docs/python/functions_and_classes/shard9/tf.expm1.md16
-rw-r--r--tensorflow/g3doc/api_docs/python/index.md1
-rw-r--r--tensorflow/g3doc/api_docs/python/math_ops.md19
3 files changed, 36 insertions, 0 deletions
diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard9/tf.expm1.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard9/tf.expm1.md
new file mode 100644
index 0000000000..a1867f0a30
--- /dev/null
+++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard9/tf.expm1.md
@@ -0,0 +1,16 @@
+### `tf.expm1(x, name=None)` {#expm1}
+
+Computes exponential of x - 1 element-wise.
+
+I.e., \\(y = (\exp x) - 1\\).
+
+##### Args:
+
+
+* <b>`x`</b>: A `Tensor`. Must be one of the following types: `half`, `float32`, `float64`, `complex64`, `complex128`.
+* <b>`name`</b>: A name for the operation (optional).
+
+##### Returns:
+
+ A `Tensor`. Has the same type as `x`.
+
diff --git a/tensorflow/g3doc/api_docs/python/index.md b/tensorflow/g3doc/api_docs/python/index.md
index 7c34526a70..ad177e21b7 100644
--- a/tensorflow/g3doc/api_docs/python/index.md
+++ b/tensorflow/g3doc/api_docs/python/index.md
@@ -225,6 +225,7 @@
* [`erf`](../../api_docs/python/math_ops.md#erf)
* [`erfc`](../../api_docs/python/math_ops.md#erfc)
* [`exp`](../../api_docs/python/math_ops.md#exp)
+ * [`expm1`](../../api_docs/python/math_ops.md#expm1)
* [`eye`](../../api_docs/python/math_ops.md#eye)
* [`fft`](../../api_docs/python/math_ops.md#fft)
* [`fft2d`](../../api_docs/python/math_ops.md#fft2d)
diff --git a/tensorflow/g3doc/api_docs/python/math_ops.md b/tensorflow/g3doc/api_docs/python/math_ops.md
index 097a5a9cec..f747383c07 100644
--- a/tensorflow/g3doc/api_docs/python/math_ops.md
+++ b/tensorflow/g3doc/api_docs/python/math_ops.md
@@ -622,6 +622,25 @@ Computes exponential of x element-wise. \\(y = e^x\\).
- - -
+### `tf.expm1(x, name=None)` {#expm1}
+
+Computes exponential of x - 1 element-wise.
+
+I.e., \\(y = (\exp x) - 1\\).
+
+##### Args:
+
+
+* <b>`x`</b>: A `Tensor`. Must be one of the following types: `half`, `float32`, `float64`, `complex64`, `complex128`.
+* <b>`name`</b>: A name for the operation (optional).
+
+##### Returns:
+
+ A `Tensor`. Has the same type as `x`.
+
+
+- - -
+
### `tf.log(x, name=None)` {#log}
Computes natural logarithm of x element-wise.