October 2022
Beginner to intermediate
456 pages
12h 12m
English
This chapter covers
In the last chapter, we examined and implemented a long short-term memory (LSTM) network, which is a type of recurrent neural network (RNN) that processes sequences of data especially well. Its implementation was the top performing architecture for the single-step model, multi-step model, and multi-output model.
Now we’re going to explore the convolutional neural network (CNN). CNNs are mostly applied in the field of computer vision, and this architecture is behind many algorithms for image classification and image segmentation.
Of course, this architecture can also be used for time series analysis. ...