I was reading a few papers about RNN networks. At some point, I came accross the following explanations:
The prediction model trained on sN is used to compute the error vectors for each point in the validation and test sequences. The error vectors are modelled to fit a multivariate Gaussian distribution N = N (μ, Σ). The likelihood p(t) of observing an error vector e(t) is given by the value of N at e(t) (similar to normalized innovations squared (NIS) used for novelty detection using Kalman filter based dynamic prediction model [5]). The error vectors for the points from vN1 are used to estimate the parameters μ and Σ using Maximum Likelihood Estimation.
And:
A Multivariate Gaussian Distribution is fitted to the error vectors on the validation set. y (t) is the probability of an error vector e (t) after applying Multivariate Gaussian Distribution N = N (µ, ±). Maximum Likelihood Estimation is used to select the parameters µ and Σ for the points from vN.
vN or vN1 are validaton datasets. sN is the training dataset.
They are from 2 different articles but describe the same thing. I didn't really understand what they mean by fitting a Multivariate Gaussian Distribution to the data. What does it mean?
Many thanks,
Guillaume