I\'m running a Keras neural network model in Jupyter Notebook (Python 3.6)
I get the following error
AttributeError: \'list\' object has no attrib
When you import you should use tensorflow.keras instead of just keras like this:
tensorflow.keras
keras
from tensorflow.keras.models import Sequential from tensorflow.keras.layers import Input, Conv2D, MaxPool2D, Dense
because there is a bug related to the keras module.
Reference: here.