Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

in the Turing lecture 2010 Christopher Bishop talks about machine learning undergoing a revolution because statistics is being applied to machine learning algorithms...

but then its like all machine learning algorithms are all statistical algorithms.. whats the real difference between the two? why are they separate courses in most universities?

share|improve this question

2 Answers

up vote 8 down vote accepted

There isn't a great deal of difference between the two, and what there is is mostly cultural. Machine Learning came from Computer Science roots whereas Statistics is more mathematical. There's a nice blog post called "Statistics vs. Machine Learning, fight!" by Brendan O'Connor that talks about this.

As for non-statistical approaches to machine learning, well there are several rule-based approaches (decision trees, rule induction, ILP) and there are also approaches like reinforcement learning for control problems. Those don't feel very statistical to me, but you could claim that they are... you could probably claim all of life falls under statistical decision theory if you wanted to (in fact, Marcus Hutter does).

share|improve this answer

Statistics bases everything on probability models. A typical analysis starts by assuming your data are samples from a random variable with some distribution, then making inferences about the parameters of the distribution.

Machine learning may use probability models, and when it does, it overlaps with statistics. But machine learning isn't so committed to probability. It is willing to also use other approaches to problem solving that are not based on probability.

share|improve this answer
I think I first saw the "Statistics vs. Machine Learning, fight!" post that I linked in my answer on your blog :) It's excellent by the way. – StompChicken Nov 17 '10 at 17:18

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.