Jump to content

General regression neural network: Difference between revisions

From Wikipedia, the free encyclopedia
Content deleted Content added
mNo edit summary
No edit summary
Line 7: Line 7:


GRNN represents an improved technique in the neural networks based on the [[Regression|non-paramertic regression]]. The basic idea is that every training sample will represents a mean to a radial basis [[Neuron|neuron]]<ref>https://minds.wisconsin.edu/bitstream/handle/1793/7779/ch2.pdf?sequence=14</ref>.
GRNN represents an improved technique in the neural networks based on the [[Regression|non-paramertic regression]]. The basic idea is that every training sample will represents a mean to a radial basis [[Neuron|neuron]]<ref>https://minds.wisconsin.edu/bitstream/handle/1793/7779/ch2.pdf?sequence=14</ref>.

Mathematical represntion of the GRNN<ref>https://minds.wisconsin.edu/bitstream/handle/1793/7779/ch2.pdf?sequence=14</ref>:

<math>
Y(x)=\frac{\sum_{k=1}^N y_k e^(d_k/2\sigma)}{\sum_{k=1}^N e^(d_k/2\sigma)}
</math><br></br>
where <math>Y(x)</math> is the prediction value of input <math>x</math>.<br></br>
<math>
d_k=(x-xi)^T(x-xi).
</math><br></br>
where <math>d_k</math> is the distance between the training samples <math>xi</math> and the input <math>x</math>.



==References==
==References==

Revision as of 00:34, 23 March 2017

Generalized regression neural network (GRNN) is a variation to radial basis neural networks (RBFNN). GRNN was suggested by D.F. Specht in 1991.[1] It can be used for regression, prediction, and classification. GRNN can also be a good solution for online dynamic systems.

GRNN represents an improved technique in the neural networks based on the non-paramertic regression. The basic idea is that every training sample will represents a mean to a radial basis neuron[2].

Mathematical represntion of the GRNN[3]:



where is the prediction value of input .



where is the distance between the training samples and the input .


References

  1. ^ "A general regression neural network - IEEE Xplore Document". Ieeexplore.ieee.org. 2002-08-06. Retrieved 2017-03-13.
  2. ^ https://minds.wisconsin.edu/bitstream/handle/1793/7779/ch2.pdf?sequence=14
  3. ^ https://minds.wisconsin.edu/bitstream/handle/1793/7779/ch2.pdf?sequence=14