Tell me more ×
Cross Validated is a question and answer site for statisticians, data analysts, data miners and data visualization experts. It's 100% free, no registration required.

hi all recently there was a ML-like question over on cstheory stackexchange & I posted an answer recommending powells method, gradient descent or genetic algorithms or other "approximation algorithms". in a comment someone told me these methods were "heuristics" and not "approximation algorithms" and frequently did not come close to the theoretical optimum (because they "frequently get stuck in local minima").

my question, do others agree with that? also it seems to me there is a sense in which heuristic algorithms can be guaranteed to come close to theoretical optimums if they are set up to explore a large part of the search space (eg setting parameters/step sizes small), although I havent seen that in a paper. does anyone know if this has been shown or proven in a paper somewhere? (if not for a large class of algorithms maybe for a small class say NNs etc)

share|improve this question
on further thought on this question it seems the related/relevant area of research is called global optimization methods/variants on top of local-type algorithms eg gradient descent... – vzn Dec 5 '12 at 6:29
eg "global optimization for neural network training" by shang & wah – vzn Dec 5 '12 at 6:43

1 Answer

up vote 16 down vote accepted

I think you're mixing multiple important concepts. Let me try to clarify a couple of things:

  • There are metaheuristic methods, which are methods that iteratively try to improve a candidate solution. Examples of this are tabu search, simulated annealing, genetic algorithms, etc. Observe that while there can be many cases where these methods work nicely, there isn't any deep understanding of when these methods work and when they don't. And more importantly when they don't get to the solution, we can be arbitrarily far from it. Problems solved by metaheuristic methods tend to be discrete in nature, because there are far better tools to handle continuous problems. But every now and then you see metaheuristics for continuous problems, too.

  • There are numerical optimization methods, people in this community carefully the nature of the function that is to be optimized and the restrictions of the solution (into groups like convex optimization, quadratic programming, linear programming etc) and apply algorithms that have been shown to work for that type of function, and that type of restrictions. When people in this area say "shown to work" they mean a proof. The situation is that these types of methods work in continuous problems. But when your problem falls in this category, this is definitely the tool to use.

  • There are discrete optimization methods, which tend to be things that in nature are connected to algorithms to well studied discrete problems: such as shortest paths, max flow, etc. People in this area also care that their algorithms really work (proofs). There are a subset of people in this group that study really hard problems for which no fast algorithm is expected to exist. They then study approximation algorithms, which are fast algorithms for which they are able to show that their solution is within a constant factor of the true optimum. This is called "approximation algorithms". These people also show their results as proofs.

So... to answer your question, I do not think that metaheuristics are approximation algorithms. It doesn't seem to me as something connected to opinion, it is just fact.

share|improve this answer
re "numerical optimization methods", "discrete optimization methods", it seems many ML techniques could be proven to be within a constant factor of the true optimum if their "initial search space" is forced to be large, but I havent seen a ref on this. – vzn Feb 10 '12 at 22:10
I disagree. * for numerical optimization you can get into local minimum (of course you can also apply procedures that make this unprobrable). * The same is for Neural Networks (at least it can happen during training of perceptron). * Genetic algorithms can also get into local minimum, moreover if you choose to big mutation rates you will get no sensible evolution! II also strongly suspect that there are datasets that will always make certain models have arbitralily big errors. – jb. Feb 11 '12 at 13:21
1  
@vzn many people choose models for which the optimal solution can be found. This is because the use convex loss functions, as SVMs do. Finding the true optimum here means "finding the optimal solution in your search space", so that has nothing to do with how the search space looks like. As jb said, for general loss functions, finding the true optimum is usually impossible / infeasible. – Andreas Mueller Feb 14 '12 at 8:44
accepting this answer as a description of current state of affairs & general categories of applications but still think there are some bridge thms that exist & remain to be proven that link up the separate areas. the proof that NNs can model or "approximate" any continuous mathematical fn to arbitrary degree of accuracy is closely related... ie kolmogorovs thm – vzn Dec 5 '12 at 6:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.