大家好,我在使用 numpy 的時候遇到了一個問題,警告訊息如下:
/usr/local/lib/python3.4/dist-packages/numpy/core/fromnumeric.py:2645:
VisibleDeprecationWarning: `rank` is deprecated; use the `ndim` attribute or function instead.
To find the rank of a matrix see `numpy.linalg.matrix_rank`. VisibleDeprecationWarning)
爬了文發現是因為 numpy 1.10 之後為捨棄 rank 這個名稱,改叫 ndim,
但我的程式碼中並沒有直接用到 np.rank(),推測是某個 numpy function 會自己呼叫到 np.rank() 造成這個警告。
因此我將所有可能與 numpy 有關的 package(numpy, sklearn, scipy) 都升級到最新,但還是無法解決。
想請問各位是否知道該如何解決?謝謝大家!