May 2020
Intermediate to advanced
404 pages
10h 52m
English
The modules that will be needed for Model.ipynb are imported as follows:
import numpy as npimport kerasfrom keras.models import Sequentialfrom keras.layers import Dense, Dropout, Flatten, Activationfrom keras.layers import Conv2D, MaxPooling2Dfrom keras import backend as Kfrom keras.layers.normalization import BatchNormalization
The keras module is required to quickly implement high-performance neural networks with the TensorFlow backend. We have talked about Keras in earlier chapters. To install Keras, you can use the following command:
pip3 install keras
The preceding command will install Keras.
Read now
Unlock full access