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
if (parse_version(keras_version) < parse_version('2.0.0')):
from keras import initializations as initializations
else:
from keras import initializers as initializers
The line
from keras import initializations as initializations
in
keras_version/cnn_functions.py
produces the errorImportError: cannot import name initializations
in recent versions of keras (e.g. 2.0.2), as reported here.
The text was updated successfully, but these errors were encountered: