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
When using Neural_Decoding.decoders, there is an error when importing from keras.utils import np_utils. I resolved this by substituting from keras.utils import np_utils with from keras.utils import to_categorical since only the the to_categorical() method is used in the code.
The text was updated successfully, but these errors were encountered:
When using Neural_Decoding.decoders, there is an error when importing
from keras.utils import np_utils
. I resolved this by substitutingfrom keras.utils import np_utils
withfrom keras.utils import to_categorical
since only the theto_categorical()
method is used in the code.The text was updated successfully, but these errors were encountered: