Reinforcement learning algorithms to play Poker.
leduc = Leduc.create_game(3)
Run NFSP on this:
python rlpoker/nfsp.py
strategy = cfr(leduc, num_iters=100000, use_chance_sampling=True)
You can also use external sampling cfr instead:
python -m examples.cfr --game Leduc
You can also use external sampling cfr instead:
python -m examples.cfr --cfr_algorithm external --game Leduc
python -m examples.deep_cfr --game Leduc
Use the rlpoker conda environment.