1 / 6

Neural Networks for Opponent Modeling in Poker

Neural Networks for Opponent Modeling in Poker. John Pym. Introduction. Texas Hold’em poker 2 down cards, followed by a round of betting. 5 community cards, 3 more rounds of betting. Imperfect information Correct strategy depends on opponent’s hand

fawzia
Download Presentation

Neural Networks for Opponent Modeling in Poker

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Neural Networks for Opponent Modeling in Poker John Pym

  2. Introduction • Texas Hold’em poker • 2 down cards, followed by a round of betting. • 5 community cards, 3 more rounds of betting. • Imperfect information • Correct strategy depends on opponent’s hand • Goal: Implement a neural network predictor of an opponent’s hand

  3. Code I used • University of Alberta’s Computer Poker Research Group (www.cs.ualberta.ca/~games/poker/) • Java source code for hand evaluation, other miscellaneous routines. • Predictor.java – interface for action predictor system • Context.java – class containing context information

  4. Code I used • Fast Artificial Neural Network Library (fann.sourceforge.net) • Open source neural network library written in C • Linked into Java program using System.load() • IRC poker database (games.cs.ualberta.ca/poker/IRC/) • History of 10 million hands played between 1995 and 2001 on the IRC poker server

  5. Steps • Finding the probability distribution for hole card combinations. • Predictor finds probability of raise/call/fold given a context. • We want a probability distribution of hole card combinations. • Used Bayesian logic to find these probabilities, given a predictor and partial context.

  6. Steps • Implemented a neural network predictor • Inputs: 22 context variables (hand strength, pot odds, number of players in hand, etc). • Output: prediction of raise/call/fold for a hand. • This is used to obtain a probability distribution for an opponent’s hole cards.

More Related