Enlist the major differences between RNN and CNN.

devquora
devquora

Posted On: Feb 22, 2018

 

The major differences between RNN and CNN are as follows

S. No.CriteriaRNNCNN
1Full formThe RNN stands for Recurrent Neutral Networks.The CNN stands for Convolution Neutral Networks.
2.Based upon the  suitabilityThe RNN is best suited for temporal data, also called as the sequential data.This is best used for processing of images, classification of images and to correlate data.
3.Based on compatibility featuresThe feature compatibility of RNN is lesser.The CNN feature compatibility is more.
4.Based on handling input/ outputThe RNN is able to handle arbitrary input/output lengths.The CNN is able to handle only fixed input/output lengths.
5.Based on processingThe RNN is able to use internal memory to process arbitrary sequences of inputs.CNN is a feed-forward artificial neural network.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    TensorFlow Interview Questions

    What is TensorFlow? Please Explain

    TensorFlow is a platform where one can learn machine learning / deep learning/multilayer neural networks from the Google library. Libraries that use data science are helpful to describe complex networ...

    TensorFlow Interview Questions

    Enlist few major features of the TensorFlow.

    Below are major features of TensorFlow:TensorFlow has the biggest ability is to build neural networks using which machines can develop logical thinking and learning analogous to humans. It is one...

    TensorFlow Interview Questions

    What are the tensors ? How many types of tensors are available?

    Tensors can be thought of as vectors and matrices of higher dimensions. They represent n-dimensional arrays of base data-type. Each element of a tensor is of the same data-type which is always known. ...