“Linear dependence in the dictionary” exception in sklearns OMP

爱⌒轻易说出口 提交于 2020-01-11 09:10:03

问题


I'm using sklearns OrthogonalMatchingPursuit to get a sparse coding of a signal using a dictionary learned by a KSVD algorithm. However, during the fit I get the following RuntimeWarning:

/usr/local/lib/python2.7/dist-packages/sklearn/linear_model/omp.py:391: RuntimeWarning:  Orthogonal matching pursuit ended prematurely due to linear
dependence in the dictionary. The requested precision might not have been met.

  copy_X=copy_X, return_path=return_path)

In those cases the results are indeed not satisfactory. I don't get the point of this warning as it is common in sparse coding to have an overcomplete dictionary an thus also linear dependency within it. That should not be an issue for OMP. In fact, the warning is also raised if the dictionary is a square matrix.

Might this Warning also point to other issues in the application?


回答1:


The problem was in the data vector y in

omp = OrthogonalMatchingPursuit(n_nonzero_coefs=target_sparsity)
omp.fit(D, y)

It contained numbers with very small magnitude. When I normalize y as well as D the fit works with the expected accuracy.



来源:https://stackoverflow.com/questions/42131696/linear-dependence-in-the-dictionary-exception-in-sklearns-omp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!