At this point, we are ready to apply Keras to our data.
Applying the deep learning model with Keras
Getting ready
We will be using the following from Keras:
- from keras.models import Sequential
- from keras.layers import Dense, Activation
How to do it...
This section walks through the following steps to apply a deep learning model, using Keras on our dataset:
- Import the following libraries to build a Sequential model from keras, using the following script:
from keras.models import Sequential
from keras.layers import Dense, Activation
- Configure the Sequential model from...