designing global search using mif2 #196
-
I have a general question about global search using |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
This is a good question about global search strategies. There is no foolproof global search strategy, nor can there ever be one, as the so-called No Free Lunch Theorems establish. The elements of effective strategies based on iterated filtering combine some number of starting guesses, together with some effort at searching locally from each guess. There are inherent tradeoffs:
The precise location of the optimum strategy along the trade-off surface necessarily depends on the details of model and data. With perfect knowledge of both, it would be feasible to find the optimum strategy. It would also be unnecessary, since one would already know the MLE. For these reasons, pomp provides you with tools to carry out your own customized search strategy. In general, as your understanding of the system grows, you can save on computation, perhaps in the way you describe in your question. One final remark: one's goal is never simply to find the MLE itself. Such a point estimate is not very valuable without an estimate of its uncertainty. For this reason, it is necessary to understand the shape of the likelihood surface, at least in a neighborhood of the MLE. More generally, qualitative knowledge of the likelihood surface's shape is often more useful than quantitative numerical estimates alone. |
Beta Was this translation helpful? Give feedback.
This is a good question about global search strategies. There is no foolproof global search strategy, nor can there ever be one, as the so-called No Free Lunch Theorems establish. The elements of effective strategies based on iterated filtering combine some number of starting guesses, together with some effort at searching locally from each guess. There are inherent tradeoffs:
Nmif
andNp
, as well as random-walk intensities, makes each local search more effective, thu…