Combining CNNs and RNNs — Part 1: Implementing a 1D CNN Fifth Section in a Series of Python Deep Learning Posts Previous sections: Python Deep Learning
medium.com Convolutional Neural Networks
medium.com Recurrent Neural Networks
medium.com Advanced Use of Recurrent Neural Networks
medium.com Combining CNNs and RNNs Because 1D CNNs process input patches independently, they aren’t sensitive to the order of the timesteps (beyond a local scale, the size of the convolution windows), unlike RNNs. Of course, to recognize…