- Source: General regression neural network
Generalized regression neural network (GRNN) is a variation to radial basis neural networks. GRNN was suggested by D.F. Specht in 1991.
GRNN can be used for regression, prediction, and classification. GRNN can also be a good solution for online dynamical systems.
GRNN represents an improved technique in the neural networks based on the nonparametric regression. The idea is that every training sample will represent a mean to a radial basis neuron.
Mathematical representation
Y
(
x
)
=
∑
k
=
1
N
y
k
K
(
x
,
x
k
)
∑
k
=
1
N
K
(
x
,
x
k
)
{\displaystyle Y(x)={\frac {\sum _{k=1}^{N}y_{k}K(x,x_{k})}{\sum _{k=1}^{N}K(x,x_{k})}}}
where:
Y
(
x
)
{\displaystyle Y(x)}
is the prediction value of input
x
{\displaystyle x}
y
k
{\displaystyle y_{k}}
is the activation weight for the pattern layer neuron at
k
{\displaystyle k}
K
(
x
,
x
k
)
{\displaystyle K(x,x_{k})}
is the Radial basis function kernel (Gaussian kernel) as formulated below.
= Gaussian Kernel
=K
(
x
,
x
k
)
=
e
−
d
k
/
2
σ
2
,
d
k
=
(
x
−
x
k
)
T
(
x
−
x
k
)
{\displaystyle K(x,x_{k})=e^{-d_{k}/2\sigma ^{2}},\qquad d_{k}=(x-x_{k})^{T}(x-x_{k})}
where
d
k
{\displaystyle d_{k}}
is the squared euclidean distance between the training samples
x
k
{\displaystyle x_{k}}
and the input
x
.
{\displaystyle x.}
Implementation
GRNN has been implemented in many computer languages including MATLAB, R- programming language, Python (programming language) and Node.js.
Neural networks (specifically Multi-layer Perceptron) can delineate non-linear patterns in data by combining with generalized linear models by considering distribution of outcomes (sightly different from original GRNN). There have been several successful developments, including Poisson regression, ordinal logistic regression, quantile regression and multinomial logistic regression that described by Fallah in 2009.
Advantages and disadvantages
Similar to RBFNN, GRNN has the following advantages:
Single-pass learning so no backpropagation is required.
High accuracy in the estimation since it uses Gaussian functions.
It can handle noises in the inputs.
It requires relatively few data to train.
The main disadvantages of GRNN are:
Its size can be huge, which would make it computationally expensive.
There is no optimal method to improve it.
References
Kata Kunci Pencarian:
- General regression neural network
- Types of artificial neural networks
- Residual neural network
- Neural tangent kernel
- Rectifier (neural networks)
- Deep learning
- History of artificial neural networks
- Neural network (machine learning)
- Recurrent neural network
- Convolutional neural network