TensorFlow-CNN和RNN的区别 (TensorFlow - CNN And RNN Difference)
In this chapter, we will focus on the difference between CNN and RNN −
在本章中,我们将重点介绍CNN和RNN之间的区别-
| CNN | RNN |
|---|---|
| It is suitable for spatial data such as images. | RNN is suitable for temporal data, also called sequential data. |
| CNN is considered to be more powerful than RNN. | RNN includes less feature compatibility when compared to CNN. |
| This network takes fixed size inputs and generates fixed size outputs. | RNN can handle arbitrary input/output lengths. |
| CNN is a type of feed-forward artificial neural network with variations of multilayer perceptrons designed to use minimal amounts of preprocessing. | RNN unlike feed forward neural networks - can use their internal memory to process arbitrary sequences of inputs. |
| CNNs use connectivity pattern between the neurons. This is inspired by the organization of the animal visual cortex, whose individual neurons are arranged in such a way that they respond to overlapping regions tiling the visual field. | Recurrent neural networks use time-series information - what a user spoke last will impact what he/she will speak next. |
| CNNs are ideal for images and video processing. | RNNs are ideal for text and speech analysis. |
| 有线电视新闻网 | RNN |
|---|---|
| 它适用于图像等空间数据。 | RNN适用于时间数据,也称为顺序数据。 |
| CNN被认为比RNN更强大。 | 与CNN相比,RNN的功能兼容性较差。 |
| 该网络采用固定大小的输入并生成固定大小的输出。 | RNN可以处理任意输入/输出长度。 |
| CNN是一种前馈人工神经网络,具有多层感知器的变体,旨在使用最少的预处理量。 | RNN与前馈神经网络不同-可以使用其内部内存来处理任意输入序列。 |
| CNN使用神经元之间的连接模式。 这是受到动物视觉皮层组织的启发,动物皮层的各个神经元的排列方式使它们对覆盖视野的重叠区域做出React。 | 循环神经网络使用时间序列信息-用户最后讲的内容将影响他/她接下来要讲的内容。 |
| CNN非常适合图像和视频处理。 | RNN是文本和语音分析的理想选择。 |
Following illustration shows the schematic representation of CNN and RNN −
下图显示了CNN和RNN的示意图-
翻译自: https://www.tutorialspoint.com/tensorflow/tensorflow_cnn_and_rnn_difference.htm
本文详细比较了卷积神经网络(CNN)与循环神经网络(RNN)的区别。CNN擅长处理图像和视频数据,而RNN则适用于文本和语音的时间序列分析。CNN能够处理固定尺寸的输入和输出,RNN则能灵活应对任意长度的数据。

被折叠的 条评论
为什么被折叠?



