recategorized by
2,746 views

3 Answers

2 votes
2 votes

$\underline{\textbf{Answer:}\Rightarrow}$

$\underline{\textbf{Explanation:}\Rightarrow}$


Neural networks are defined at various levels of abstraction, and thus it models different aspects of neural networks.

$\therefore$ The network capacity is nothing but the levels of abstraction or the number of fundamental memories or the number of patterns that can be stored and recalled in a network.


https://en.wikipedia.org/wiki/Neural_network

https://scialert.net/fulltextmobile/?doi=itj.2008.684.688

0 votes
0 votes

The number of patterns that can be stored and recalled in a network.

The capacity of a neural network refers to its ability to store and recall patterns. It is influenced by factors such as the architecture of the network, the weights associated with connections, and the activation functions used.

So, the correct option is:

The number of patterns that can be stored and recalled in a network.

Answer:

Related questions

4.5k
views
3 answers
3 votes
Anuanu asked Jun 15, 2016
4,499 views
Which of the following is an unsupervised neural network?RBSHopfieldBack propagationKohonen
3.9k
views
2 answers
3 votes
Arjun asked Apr 22, 2018
3,861 views
The difference between a named pipe and a regular file in Unix is thatUnlike a regular file, named pipe is a special fileThe data in a pipe is transient, unlike the conte...
5.5k
views
1 answers
2 votes
Arjun asked Apr 22, 2018
5,532 views
Perform window to viewport transformation for the point (20,15). Assume that $(X_{wmin}\ ,Y_{wmin} )$ is $(0,0)$ ; $(X_{wmax}\ ,Y_{wmax} )$ is $(100,100)$ ; $(X_{vmin}\ ,...
3.9k
views
2 answers
3 votes
Arjun asked Apr 22, 2018
3,890 views
Consider the following C++ programint a (int m) {return ++m;} int b(int&m) {return ++m;} int{char &m} {return ++m;} void main() { int p = 0, q=0, r = 0; p += a(b(p)) ; q+...