From 8b6624f2bbe6e65ce6750d240d859dcf417846ec Mon Sep 17 00:00:00 2001 From: Eric Bigelow <ebigelow@u.rochester.edu> Date: Thu, 30 Mar 2017 11:41:54 -0400 Subject: [PATCH] Fixed error in docstring for svd --- tensorflow/python/ops/linalg_ops.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorflow/python/ops/linalg_ops.py b/tensorflow/python/ops/linalg_ops.py index 0bbad2f4984..e2fd25675ec 100644 --- a/tensorflow/python/ops/linalg_ops.py +++ b/tensorflow/python/ops/linalg_ops.py @@ -258,10 +258,10 @@ def svd(tensor, full_matrices=False, compute_uv=True, name=None): Returns: s: Singular values. Shape is `[..., P]`. - u: Right singular vectors. If `full_matrices` is `False` (default) then + u: Left singular vectors. If `full_matrices` is `False` (default) then shape is `[..., M, P]`; if `full_matrices` is `True` then shape is `[..., M, M]`. Not returned if `compute_uv` is `False`. - v: Left singular vectors. If `full_matrices` is `False` (default) then + v: Right singular vectors. If `full_matrices` is `False` (default) then shape is `[..., N, P]`. If `full_matrices` is `True` then shape is `[..., N, N]`. Not returned if `compute_uv` is `False`.