KordingLab / Neural_Decoding

A python package that includes many methods for decoding neural activity
BSD 3-Clause "New" or "Revised" License
412 stars 117 forks source link

Error importing keras.utils.np_utils #19

Open danielwang365 opened 9 months ago

danielwang365 commented 9 months ago

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.

danielwang365 commented 9 months ago

image