Skip to content

Simple scripts to extract, clean and browse the IRC Poker Database.

Notifications You must be signed in to change notification settings

gauravkaka/PokerHandsDataset

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Poker Hands Dataset

Simple scripts to extract, clean and browse the IRC Poker Database. Note here only hold 'em hands are included. Most (over 95%) hands are dropped either because they're not hold 'em or because of lack of features.

Data Preparation

Run the following codes in order:

wget http://poker.cs.ualberta.ca/IRC/IRCdata.tgz  # download the database (-> IRCdata.tgz)
tar -xvf IRCdata.tgz                              # unzip the tgz file (-> IRCdata)
python3 extract.py                                # extract data (-> hands.json)
python3 clean.py                                  # drop invalid hand data (-> hands_valid.json)

Eventually there're 10,233,955 hands in hands.json and 437,862 in hands_valid.json after cleaning.

Data Inspection

You may run the following code to inspect hands in their original order. Any time you'd like to stop browsing, you can just use Ctrl+C to interrupt the process.

python3 browse.py                                 # print hands in a formatted way

The script lists extracted hands history as below.

############################################################
   time : 199612            id : 2093
  board : ['Qd', '6s', 'Td', 'Qc', 'Jh']
   pots : [(2, 60), (2, 60), (2, 60), (2, 60)]
players : 
                         Tiger (#1)                         
{'action': 30,
 'bankroll': 2922,
 'bets': [{'actions': ['B', 'r'], 'stage': 'p'},
          {'actions': ['k'], 'stage': 'f'},
          {'actions': ['k'], 'stage': 't'},
          {'actions': ['k'], 'stage': 'r'}],
 'pocket_cards': ['9s', 'Ac'],
 'winnings': 30}
· · · · · · · · · · · · · · · · · · · · · · · · · · · · · · 
                        jvegas2 (#2)                        
{'action': 30,
 'bankroll': 139401,
 'bets': [{'actions': ['B', 'c'], 'stage': 'p'},
          {'actions': ['k'], 'stage': 'f'},
          {'actions': ['k'], 'stage': 't'},
          {'actions': ['k'], 'stage': 'r'}],
 'pocket_cards': ['9c', 'As'],
 'winnings': 30}
############################################################

References

About

Simple scripts to extract, clean and browse the IRC Poker Database.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%