I am researching the spread of a disease through a population and want to capture the behavior of this disease with a model.
I already have a model and patient data. The data is a value per patient that is more or less lognormally distributed. I would like to tune the parameters of the model based on the patient data with MCMC. The acceptance criterion would be P(parameters | data). Unfortunately, calculating this likelihood is computationally unfeasible. This led me to using Approximate Bayesian Computation:
I pick parameters, generate data from the model and compare the generated data to the real data. The acceptance criterion is then based on some metric to compare the two datasets. There exist many ways to calculate the distance between distributions. The most intuitive one to pick for me would be the Bhattacharyya distance, but I can't find any literature about it in the context of Approximate Bayesian Computation.
If anyone could give me references where such a distance is used for approximate Bayesian computation or in combination with MCMC, I would greatly appreciate it.