May 2020
Beginner to intermediate
430 pages
10h 39m
English
In this section, we will import a model. The code for model construction is shown as follows (the explanation of each code snippet is just underneath the code):
model = Modelx(weights='imagenet', include_top=True,input_shape=(img_height, img_width, 3))Modelx = VGG16 or ResNet50 or InceptionV3
The model construction has three important parameters:
Read now
Unlock full access