-
Notifications
You must be signed in to change notification settings - Fork 2.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
import compatibility issue with newest kereas 2.x #158
Comments
There are several compatibility issues in vgg16_avg.py |
Most of the course is currently not compatible with Keras 2.0 api. |
The changes to make it compatible with keras 2.0 were easy and mostly obvious. |
@rawmean : Can you post those changes? |
I had same issue today and solved it by uninstalling Keras 2.x.x and installing Keras 1.2.2 |
Updated modules: https://github.com/roebius/deeplearning_keras2 |
@taewookim Do the updated modules work with Python 2.7 or only with Python 3 ? |
Never tested with Python 2 |
Alter checking for running inside NB
keras-team/keras#5870
two errors: cannot import activity_l2, cannot import layer_from_config
activity_l1 is deleted and was equal to l1
activity_l2 is deleted and was equal to l2
as for layer_from_config:
#from keras.utils.layer_utils import layer_from_config
from keras.layers import deserialize as layer_from_config
The text was updated successfully, but these errors were encountered: