May 2019
Intermediate to advanced
456 pages
11h 38m
English
So far, we've used sequential models. In the sequential model, layers get stacked on top of each other when we call model.add(). The advantage of the functional API is that it is simple and prevents errors. The disadvantage is that it only allows us to stack layers linearly:

GoogLeNet Architecture from Szegedy and others' "Going Deeper with Convolutions"
Take a look at the preceding GoogLeNet architecture. While the graph is very detailed, what we need to take away is the fact that the model is not just a number of layers stacked on top of each other. Instead, there are multiple layers in parallel; in this ...