Fixed error in docstring for svd

This commit is contained in:
Eric Bigelow 2017-03-30 11:41:54 -04:00 committed by GitHub
parent 2a4811054a
commit 8b6624f2bb

View File

@ -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`.