sample_posterior_gaussian_fit
- QRNN.sample_posterior_gaussian_fit(x, n=1)[source]
Generates
n
samples from the estimated posterior distribution for the input vectorx
. The sampling is performed by the inverse CDF method using the estimated CDF obtained from thecdf
member function.- Parameters:
x (np.array) – Array of shape (n, m) containing n inputs for which to predict the conditional quantiles.
n (int) – The number of samples to generate.
- Returns:
Tuple (xs, fs) containing the \(x\)-values in xs and corresponding values of the posterior CDF :math: F(x) in fs.