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 am using the MultinomialHMM class of seqlearn and the code crashes with error
ValueError: Buffer dtype mismatch, expected 'npy_intp' but got 'int'
at the function count_trans() inside the fit() function. I am trying to change the data type of the y array from int to numpy.npy_intp but this type does not exist in numpy (np).
How can I fix this?
The text was updated successfully, but these errors were encountered:
I am using the MultinomialHMM class of seqlearn and the code crashes with error
ValueError: Buffer dtype mismatch, expected 'npy_intp' but got 'int'
at the function count_trans() inside the fit() function. I am trying to change the data type of the y array from int to numpy.npy_intp but this type does not exist in numpy (np).
How can I fix this?
The text was updated successfully, but these errors were encountered: