How to build a poker bot (Part 2 Kuhn Poker)

Learn Texas Holdem Video Source & Info:

Solving the simple Kuhn poker with the counterfactual regret minimization algorithm learn in part 1

Part 1 https://www.youtube.com/watch?v=Wa-fRIBGZZI
Vanilla CFR https://justinsermeno.com/posts/cfr/

Code: https://github.com/IanSullivan/PokerCFR

Source: YouTube

Share this video:
How to build a poker bot (Part 2 Kuhn Poker)

5 thoughts on “How to build a poker bot (Part 2 Kuhn Poker)

  1. Why do you calculate node.regret_sum on line 58 and 61 by only multiplying with the opponents probability on line 58, for example: node.regret_sum += pr_2 * regrets ? Why not the total probability: node.regret_sum += pr_2 * pr_1 * regrets ?

Comments are closed.