The main difference between RNN and CNN come from their structure of the Neural Network. Due to their specific design, CNNs are more fit for spatial data such as images whereas RNNs are more for temporal data that comes in sequence.
CNNs employ filters within convolutional layers to transform data. Whereas, RNNs reuse activation functions from other data points in the sequence to generate the next output in a series.
CNN takes fixed size inputs and generates fixed size outputs. RNN can handle arbitrary input/output lengths.
CNN is a feed forward neural network that is generally used for Image recognition and object classification. While RNN works on the principle of saving the output of a layer and feeding this back to the input in order to predict the output of the layer.
CNN considers only the current input while RNN considers the current input and also the previously received inputs. It can memorize previous inputs due to its internal memory.
Convolutional Neural Network

Recurrent Neural Network

Recommended Read: RNN vs LSTM
References:
- https://lionbridge.ai/articles/difference-between-cnn-and-rnn/
- https://medium.com/@Aj.Cheng/different-between-cnn-rnn-quote-7c224795db58
Recommended:
- Data Analyst Job Profile | Roles and Responsibilities
- Frequently Asked Machine Learning Interview Questions and Answers
One comment