You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I get a RuntimeError when running augment_data.py, which traces back to SVD (matrix_operator function invoked from tangent_space function). Possibly due to a badly-conditioned matrix?
Traceback (most recent call last):
File "augment_data.py", line 35, in <module>
tangent = tangent_space(data, data)
File "/home/reddwarf/.local/lib/python3.6/site-packages/spdnet/utils.py", line 43, in tangent_space
middle = matrix_operator(middle, 'expm')
File "/home/reddwarf/.local/lib/python3.6/site-packages/spdnet/utils.py", line 20, in matrix_operator
u, s, v = A.svd()
RuntimeError: Lapack Error gesdd : 1 superdiagonals failed to converge. at /opt/conda/conda-bld/pytorch_1556653183467/work/aten/src/TH/generic/THTensorLapack.cpp:406
The text was updated successfully, but these errors were encountered:
I get a RuntimeError when running
augment_data.py
, which traces back to SVD (matrix_operator
function invoked fromtangent_space
function). Possibly due to a badly-conditioned matrix?The text was updated successfully, but these errors were encountered: