Parameter inference for agents based model

Hello everyone, Im doing parameter inference for my agent based model. At the moment, Im using NUTS() from Turing package. Im not sure if its the right choice as model is stochastic in nature. I was wondering that if a ABC method is much more better ?

Do you guys have suggestions?

What kind of agent-based model and what kind of data do you have? That can make a big difference in what methods to use…

I have a continuous time agent based model. So, in terms of Agents.jl --- EventBasedModel. I have some experimental data(dose-response) that Im trying to fit with my model(which try to replicate experimental process). Now model output is not deterministic in nature which is leading to issues during inference with Turing.

Have you tried using Gen.jl instead? The tooling lends itself much better to your scenario (though you may have to implement a custom sampler).

1 Like