Eawag-SIAM / SimulatedAnnealingABC.jl

Approximate Bayesian Computation algorithm based on simulated annealing
GNU General Public License v3.0
1 stars 0 forks source link

Extension to multiple summary statistics #8

Closed scheidan closed 1 year ago

scheidan commented 1 year ago

After some discussion Carlo and I came to the following, preliminary conclusions.

We get multiple distances (rho) from f_dist. We change the initialization as follows:

  1. get n_particle prior samples and compute distances
  2. learn the multivariate CDF of the distances -> this function maps a vector of summary distances to the scalar number u.
  3. Choose epsilon_init (as epsilon_init relates now to u it shoud have an easy interpretation)
  4. Keep sampling with acceptance probability exp(- u ./ epsilon_init) until we have n_particle samples.
  5. (optional) relearn the multivariate CDF form the larger sample.

We need to think about:

scheidan commented 1 year ago

The multivariate CDF is not a correct solution!