aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/g3doc/api_docs/python/functions_and_classes/shard7/tf.matrix_diag_part.md
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/g3doc/api_docs/python/functions_and_classes/shard7/tf.matrix_diag_part.md')
-rw-r--r--tensorflow/g3doc/api_docs/python/functions_and_classes/shard7/tf.matrix_diag_part.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard7/tf.matrix_diag_part.md b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard7/tf.matrix_diag_part.md
index efaf772f6b..f91c560c12 100644
--- a/tensorflow/g3doc/api_docs/python/functions_and_classes/shard7/tf.matrix_diag_part.md
+++ b/tensorflow/g3doc/api_docs/python/functions_and_classes/shard7/tf.matrix_diag_part.md
@@ -34,12 +34,12 @@ which has shape (2, 4)
##### Args:
-* <b>`input`</b>: A `Tensor`. Rank `k` tensor where `k >= 2`.
+* <b>`input`</b>: A `Output`. Rank `k` tensor where `k >= 2`.
* <b>`name`</b>: A name for the operation (optional).
##### Returns:
- A `Tensor`. Has the same type as `input`.
+ A `Output`. Has the same type as `input`.
The extracted diagonal(s) having shape
`diagonal.shape = input.shape[:-2] + [min(input.shape[-2:])]`.