1
resposta

Erro: compressed.py:130: VisibleDeprecationWarning: `rank` is deprecated;

Qual o motivo do erro:

/usr/lib/python2.7/dist-packages/scipy/sparse/compressed.py:130: VisibleDeprecationWarning: rank is deprecated; use the ndim attribute or function instead. To find the rank of a matrix see numpy.linalg.matrix_rank. if np.rank(self.data) != 1 or np.rank(self.indices) != 1 or np.rank(self.indptr) != 1: /usr/lib/python2.7/dist-packages/scipy/sparse/coo.py:200: VisibleDeprecationWarning: rank is deprecated; use the ndim attribute or function instead. To find the rank of a matrix see numpy.linalg.matrix_rank. if np.rank(self.data) != 1 or np.rank(self.row) != 1 or np.rank(self.col) != 1:

1 resposta

Ola Acácio

É um warning dizendo que essa função não deve mais ser usada. Ela deve posuir algum bug em casos especiais e a mensagem ta avisando que devemos preferir usar a ndim em vez da rank.