What are some algorithms or methods used in imperfect information games such as card games?

I'm planning to enhance the "expectimax" algorithm by giving it random pattern (still don't have an idea what to use) since I've thought that if the AI played numerous games with a player, its playing pattern can be deduced thus can lower its winning percentages.

link|improve this question

0% accept rate
Wouldn't it be the case that the more randomly you play, the worse you are? If you're searching several moves down, it'll be very hard to detect patterns. Even for deterministic chess programs, "playing patterns" are nearly impossible to deduce. – Allen Z. Dec 11 '11 at 0:45
I imagine that in, e.g., poker, it would be a bad idea to play too deterministically. – Per Dec 11 '11 at 2:03
what would be a good algorithm to incorporate to randomize the patterns? – Odine Dec 11 '11 at 9:59
@AllenZ. Per is right - in imperfect information games like Poker, the best strategy incorporates nondeterminism. Otherwise, it's too easy for your opponent to deduce your cards. – Nick Johnson Dec 11 '11 at 22:31
No, i mean the opponent might still be able to deduce the play even if its non-deterministic like (for example only) bringing the cards down when losing or has a pattern (discarding etc). – Odine Dec 12 '11 at 11:30
feedback

1 Answer

Go to http://webdocs.cs.ualberta.ca/~games/. This University of Alberta GAMES group is one of the leading research groups in computer gaming AI and they have e.g. developed the world's championship poker AI Poki. They have many papers online where they describe their experiments and approaches.

link|improve this answer
what would be a good algorithm to incorporate to randomize the patterns? – Odine Dec 11 '11 at 10:06
feedback

Your Answer

 
or
required, but never shown

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