vote up 20 vote down star
1

Simple online games of 20 questions powered by an eerily accurate AI.

How do they guess so well?

flag

It appears to be the best 20 questions AI I've seen so far. Otherwise I'd link to one of the others. – Daddy Warbox May 20 at 12:18
1  
feels spammy with the link, so let's talk about this in the abstract. I have a blog entry about this as well. codinghorror.com/blog/archives/… – Jeff Atwood May 20 at 12:22
Very well. Though Akinator appears to guess much more intuitively than 20q.net, as far as I can tell. I'm interested in what makes that one in particular 'smart', so to speak. – Daddy Warbox May 20 at 12:28
i had no idea this thing existed online. It guessed 'pine cone' on third attempt, to my amazement! Impressive – MasterPeter May 20 at 12:58
1  
+1 - definitely programming related, and a good question. – Adam Davis May 20 at 17:22

5 Answers

vote up 8 vote down check

You can think of it as the Binary Search Algorithm. In each iteration, we ask a question, which should eliminate roughly half of the possible word choices. If there are total of N words, then we can expect to get an answer after log2(N) questions.

With 20 question, we should optimally be able to find a word among 2^20 = 1 million words.

One easy way to eliminate outliers (wrong answers) would be to probably use something like RANSAC. This would mean, instead of takinging into account all questions which hae been answered, you randomly pick a smaller subset, which is enough to give you a single answer. Now you repeat that a few times with different random subset of questions, till you see that most of the time, you are getting the same result. you then know you have the right answer.

Ofcourse this is just one way of many ways of solving this problem.

link|flag
vote up 8 vote down

It is using a learning algorithm.

k-NN is a good example of one of these.

Wikipedia: k-Nearest Neighbor Algorithm

link|flag
Is a nearest neighbour algorithm a good choice in this case? It would seem that it would be far too forgiving of wrong answers, and could end up with a massive number of dimensions, many of which with no data. (I'm assuming the use of hamming distance, and one dimension per question.) A decision tree seems a more natural fit. – Kylotan May 29 at 10:11
vote up 14 vote down

I recommend reading about the game here: http://en.wikipedia.org/wiki/Twenty_Questions

In particular the Computers section:

The game suggests that the information (as measured by Shannon's entropy statistic) required to identify an arbitrary object is about 20 bits. The game is often used as an example when teaching people about information theory. Mathematically, if each question is structured to eliminate half the objects, 20 questions will allow the questioner to distinguish between 220 or 1,048,576 subjects. Accordingly, the most effective strategy for Twenty Questions is to ask questions that will split the field of remaining possibilities roughly in half each time. The process is analogous to a binary search algorithm in computer science.

link|flag
1  
That explains some of it. But when you consider incorrect answers and general ambiguity, it still seems not quite so straightforward. – Daddy Warbox May 20 at 12:16
1  
If you looked at the link you'll see that this is not really a yes/no question that can divide the field by half each time. While your answer is correct for 20 questions, I think that Shaun's answer is more accurate, a simple nearest-neighbor learning algorithm, and enough user input, allows for some very accurate results. – yx May 20 at 12:29
Ah, true, they are similar, but definitely the nearest neighbor makes more sense. – altCognito May 20 at 12:56
vote up 9 vote down

A decision tree supports this kind of application directly. Decision trees are commonly used in artificial intelligence.

A decision tree is a binary tree that asks "the best" question at each branch to distinguish between the collections represented by its left and right children. The best question is determined by some learning algorithm that the creators of the 20 questions application use to build the tree. Then, as other posters point out, a tree 20 levels deep gives you a million things.

A simple way to define "the best" question at each point is to look for a property that most evenly divides the collection into half. That way when you get a yes/no answer to that question, you get rid of about half of the collection at each step. This way you can approximate binary search.

Wikipedia gives a more complete example:

http://en.wikipedia.org/wiki/Decision_tree_learning

And some general background:

http://en.wikipedia.org/wiki/Decision_tree

link|flag
+1, I would note that was one of the comments in the Atwood article. – altCognito May 20 at 14:28
True, although the BASIC program Animal doesn't have a training algorithm to determine which questions to use and how high in the tree to put them. Performance with a trained decision tree should be much better. (I agree with the commenter that the questions Atwood got look very much like they were generated by the original Animal algorithm and not by a neural network.) – Nathan Sanders May 20 at 14:59
vote up 1 vote down

Also, this appears to be a form of expert system.

link|flag

Your Answer

Get an OpenID
or

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