October 2018
Intermediate to advanced
134 pages
2h 39m
English
We are now done with the data preprocessing that is necessary to prepare the data for machine learning. Now, it's time to start the fun part, where we actually get to build a neural network. We will train it using our training data, and then test it on our testing dataset:
from keras.models import Sequentialfrom keras.layers import Densefrom keras.optimizers import Adam
In the preceding code snippet, Adam is the standard optimizer that people use with deep neural networks and Keras.
Read now
Unlock full access