- Applications of Neural Networks
- Genetic Algorithm
- Other Optimization Techniques
- Optimization Using Hopfield Network
- Brain-State-in-a-Box Network
- Boltzmann Machine
- Hopfield Networks
- Associate Memory Network
- Kohonen Self-Organizing Feature Maps
- Adaptive Resonance Theory
- Learning Vector Quantization
- Unsupervised Learning
- Supervised Learning
- Learning & Adaptation
- Building Blocks
- Basic Concepts
- Artificial Neural Network - Home
Artificial Neural Network Resources
Selected Reading
- Who is Who
- Computer Glossary
- HR Interview Questions
- Effective Resume Writing
- Questions and Answers
- UPSC IAS Exams Notes
Brain-State-in-a-Box Network
The Brain-State-in-a-Box (BSB) neural network is a nonpnear auto-associative neural network and can be extended to hetero-association with two or more layers. It is also similar to Hopfield network. It was proposed by J.A. Anderson, J.W. Silverstein, S.A. Ritz and R.S. Jones in 1977.
Some important points to remember about BSB Network −
It is a fully connected network with the maximum number of nodes depending upon the dimensionapty n of the input space.
All the neurons are updated simultaneously.
Neurons take values between -1 to +1.
Mathematical Formulations
The node function used in BSB network is a ramp function, which can be defined as follows −
$$f(net):=:min(1,:max(-1,:net))$$
This ramp function is bounded and continuous.
As we know that each node would change its state, it can be done with the help of the following mathematical relation −
$$x_{t}(t:+:1):=:fleft(egin{array}{c}displaystylesumpmits_{j=1}^n w_{i,j}x_{j}(t)end{array} ight)$$
Here, xi(t) is the state of the ith node at time t.
Weights from ith node to jth node can be measured with the following relation −
$$w_{ij}:=:frac{1}{P}displaystylesumpmits_{p=1}^P (v_{p,i}:v_{p,j})$$
Here, P is the number of training patterns, which are bipolar.
Advertisements