Poker-AI.org

Poker AI and Botting Discussion Forum
It is currently Mon Nov 13, 2023 1:59 pm

All times are UTC




Post new topic Reply to topic  [ 2 posts ] 
Author Message
 Post subject: HU Nash Table
PostPosted: Sun Sep 15, 2019 5:20 am 
Offline
Senior Member
User avatar

Joined: Sun Mar 10, 2013 10:31 am
Posts: 139
Want to repeat HU Nash table. (as a warm up before cfr)

Here is code:
Code:
class NashCalculator {
public:

   uint8_t PushStrategy[169]; //probability 1/0xFF parts to push
   uint8_t CallStrategy[169]; //probability 1/0xFF parts to call
   
   double PusherPushGain[169]; //gain from push action (only vs specific call strategy)
   double PusherFoldGain[169];
   
   double CallerCallGain[169];
   double CallerFoldGain[169];

   void CalculateGains(HU_LUT* HL, int small_blind, int big_blind, int ante, int stack);

};


Some questions appear:

1. As I see on nash table -> there are no mixed moves (with probabilityes).
So seems there are nash in non mixed moves?

2. My plan is:
- take some random or 50/50 strategies
- calculate pusher and caller gains
- then change strategies in some way (gradient? min max?)
- repeat until (dont know for now )

May be there are some no itterative methods?
Or may be I doing somthing wery wrong from a scratch?


Top
 Profile  
 
 Post subject: Re: HU Nash Table
PostPosted: Sun Sep 15, 2019 12:30 pm 
Offline
Site Admin
User avatar

Joined: Sun Feb 24, 2013 9:39 pm
Posts: 642
I would guess you can solve this problem with fictitious play or CFR, or maybe linear programming. At convergence the ev gap between the best response of player 1 and the best response of player 2 is zero, or very small


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 2 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group