Which of the following are feedforward neural networks?
Feedforward neural networks (FNNs) are networks where information moves in only one direction---forward---from the input nodes through hidden layers to the output nodes. Both fully-connected neural networks (where each neuron in one layer connects to every neuron in the next) and convolutional neural networks (CNNs) (which have a specific architecture for image data) are examples of feedforward networks.
However, recurrent neural networks (RNNs) and Boltzmann machines are not feedforward networks. RNNs include loops where information can be fed back into previous layers, and Boltzmann machines involve undirected connections between units, making them a form of a stochastic network rather than a feedforward structure.
Currently there are no comments in this discussion, be the first to comment!