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
numpy.matrix has been deprecated in favor of using np.ndarray (i.e., using np.array, np.asarray, etc). There are some subtle differences in behavior between the two, which makes some of the examples a bit more hairy than needed. As of the time of when this issue was filed, the pending hebi-py release (1.1.0) internally drops almost all use of np.matrix in favor of the array counterparts. No public API calls of hebi-py should longer return np.matrix; consequently, we should not be using them in the examples.
numpy.matrix
has been deprecated in favor of usingnp.ndarray
(i.e., usingnp.array
,np.asarray
, etc). There are some subtle differences in behavior between the two, which makes some of the examples a bit more hairy than needed. As of the time of when this issue was filed, the pendinghebi-py
release (1.1.0
) internally drops almost all use ofnp.matrix
in favor of the array counterparts. No public API calls ofhebi-py
should longer returnnp.matrix
; consequently, we should not be using them in the examples.For some more info, see this stack overflow post: https://stackoverflow.com/questions/53254738/deprecation-status-of-the-numpy-matrix-class
The text was updated successfully, but these errors were encountered: