-
A larger population size results in a larger ESS, but also in a larger probability of getting stuck in a local minima. A smaller population size better explores the parameter space and (at least in my case) usually ends up finding better solutions, but at the cost of a smaller final ESS. My ideal set up would be to begin with a Can this, or a similar strategy, be implemented in pyABC? The closest I can think of is to perform several small runs, at each run manually increasing the |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 1 reply
-
There exists the |
Beta Was this translation helpful? Give feedback.
-
Thank you @arrjon, yes that is what I was thinking about. Is there a way to tell |
Beta Was this translation helpful? Give feedback.
There exists the
pyabc.populationstrategy
module, where you can define your strategy. Currently, you can either use a fixed list of population sizes or an adaptive strategy. You can give the stratgy topopulation_size
instead of a constant size. Is that what you were looking for?