| CNN | RNN |
|---|---|
| Convolutional Neural Network | Recurrent Neural Network |
| Known as the feed-forward model | For the series of data |
| Memoryless model | Requires memory to store previous inputs |
| Cannot handle sequential data | Can handle Sequential data |
| Used for Image recognition | Used for Text recognition |
| Can handle fixed length of input/ output | Can handle arbitrary lengths of input/ output |
| Feature compatibility is more | Feature compatibility is less |
| Handles permanent data | Handles temporary data |