Poker-AI.org Poker AI and Botting Discussion Forum 2014-05-24T12:57:16+00:00 http://poker-ai.org/phpbb/feed.php?f=24&t=2748 2014-05-24T12:57:16+00:00 2014-05-24T12:57:16+00:00 http://poker-ai.org/phpbb/viewtopic.php?t=2748&p=6043#p6043 <![CDATA[Re: Action Abstraction in simulation-based algorithms]]> Statistics: Posted by cantina — Sat May 24, 2014 12:57 pm


]]>
2014-05-11T15:39:32+00:00 2014-05-11T15:39:32+00:00 http://poker-ai.org/phpbb/viewtopic.php?t=2748&p=5996#p5996 <![CDATA[Re: Action Abstraction in simulation-based algorithms]]>
Find out by experiment if ev is a continuous function of bet size with a single maximum. If it is you can use simple optimisation to determine the bet size with highest ev. With a bit of luck, the bet size for max ev in one situation will be similar to the bet size for for max ev in a "nearby" situation.

Statistics: Posted by spears — Sun May 11, 2014 3:39 pm


]]>
2014-05-08T17:07:36+00:00 2014-05-08T17:07:36+00:00 http://poker-ai.org/phpbb/viewtopic.php?t=2748&p=5991#p5991 <![CDATA[Action Abstraction in simulation-based algorithms]]> Why I'm looking into this: I'm using MCTS, an algorithm that builds a search tree, trying to estimate the actual game tree using simulation and resulting in an estimation of the EV for each possible action.

So with the goal of getting the best estimation of EV in mind, this is what I'm thinking for decision nodes (try to stay with me ;)):
The chosen branches should lead to the highest divergency in poker situations. Eg. as a player, you will probably have the same reaction to a minimum raise, and a minimum + $0.01 raise. So I think a good abstraction would be taking together those gamestates where the opponent will react the same, or similar, think the same about my cards.

These ranges of bet sizes are of course different for every player, so we should look to make an estimation of the average player. I think a good estimation would be based on the pot odds (or implied odds), but how exactly that would go, I've yet to figure out.

Once we decided on these ranges, I think the bet/raise size should be equal to a weighted average, with the weights equal to the chance of the betsize (for example given by a learned distribution, player-specific or general).

So now you know what I'm thinking, I have some questions:
1. What do you think about this thought process?

2. Do you think the same could be said about opponent nodes?

3. I'm also thinking about if a different abstraction should be made in the root node and in another decision node. I think not, but I'm not sure. Also, can I reduce the number of branches if we go deeper into the tree?

4. And a last thought I had: is all the trouble of finding a good abstraction worth the while, comparing it to an uniform abstraction (X branches, spread uniformly over the ) or an expert knowlegde abstraction (eg. {0,5; 0,8; 1; 2} * potsize)?


PS. Some relevant approaches I've found:
- viewtopic.php?f=25&t=6.
- sampling from a learned distribution

Statistics: Posted by Sacré d'Jeu — Thu May 08, 2014 5:07 pm


]]>