Poker-AI.org Poker AI and Botting Discussion Forum 2021-06-02T09:31:37+00:00 http://poker-ai.org/phpbb/feed.php?f=22&t=3043 2021-06-02T09:31:37+00:00 2021-06-02T09:31:37+00:00 http://poker-ai.org/phpbb/viewtopic.php?t=3043&p=8750#p8750 <![CDATA[Re: What are average hand values on flop, turn and river?]]> ______________________
https://www.americanodds.com/

Statistics: Posted by AlexMoore — Wed Jun 02, 2021 9:31 am


]]>
2017-05-07T18:41:19+00:00 2017-05-07T18:41:19+00:00 http://poker-ai.org/phpbb/viewtopic.php?t=3043&p=7198#p7198 <![CDATA[Re: What are average hand values on flop, turn and river?]]> Statistics: Posted by CaptnCanary — Sun May 07, 2017 6:41 pm


]]>
2017-05-07T08:17:29+00:00 2017-05-07T08:17:29+00:00 http://poker-ai.org/phpbb/viewtopic.php?t=3043&p=7197#p7197 <![CDATA[Re: What are average hand values on flop, turn and river?]]>
Code:
object CountTies extends App {
 
  val noSimulations = 1e7.toInt
  var noTies = 0
 
  for (i <- 0 until noSimulations) {
    val board = Hand.random(5)
    val cards = {
      val cardSet = Set.empty[Card]
      while (cardSet.size != 4) {
        val card = Card.random
        if(!board.contains(card)) cardSet += card
      }
      cardSet.toArray
    }
    val river1 = board + cards(0) + cards(1)
    val river2 = board + cards(2) + cards(3)

    if(river1.rank == river2.rank) noTies += 1
  }
  println(noTies.toDouble / noSimulations.toDouble)
 
}

Statistics: Posted by spears — Sun May 07, 2017 8:17 am


]]>
2017-05-06T23:07:17+00:00 2017-05-06T23:07:17+00:00 http://poker-ai.org/phpbb/viewtopic.php?t=3043&p=7196#p7196 <![CDATA[Re: What are average hand values on flop, turn and river?]]> Statistics: Posted by CaptnCanary — Sat May 06, 2017 11:07 pm


]]>
2017-05-06T21:53:11+00:00 2017-05-06T21:53:11+00:00 http://poker-ai.org/phpbb/viewtopic.php?t=3043&p=7195#p7195 <![CDATA[Re: What are average hand values on flop, turn and river?]]> Statistics: Posted by spears — Sat May 06, 2017 9:53 pm


]]>
2017-05-06T17:38:46+00:00 2017-05-06T17:38:46+00:00 http://poker-ai.org/phpbb/viewtopic.php?t=3043&p=7194#p7194 <![CDATA[Re: What are average hand values on flop, turn and river?]]> In the simulations, at each stage I'm getting the index of the hand strength using the klaatu hand evaluator. I've been running the simulation for 10million hands and counting ties where the klaatu value for each player was equal at the river. Each time I get over 400k ties.
After running the simulations I look up the median hand value and those hands are what I've got. I figure that if my hand strength is better than the median value then betting ought to be profitable in the long term versus a random acting bot. The simulations are all HU with hole cards dealt for both players.

Statistics: Posted by CaptnCanary — Sat May 06, 2017 5:38 pm


]]>
2017-05-06T17:15:30+00:00 2017-05-06T17:15:30+00:00 http://poker-ai.org/phpbb/viewtopic.php?t=3043&p=7193#p7193 <![CDATA[Re: What are average hand values on flop, turn and river?]]>
Quote:

Flop: TTK72

I've never actually calculated the average number of ties, but 4% seems very high. I'd expect something like 2.2%. What is it the average of? All boards with uniformly distributed hole cards?

Statistics: Posted by spears — Sat May 06, 2017 5:15 pm


]]>
2017-05-06T15:30:06+00:00 2017-05-06T15:30:06+00:00 http://poker-ai.org/phpbb/viewtopic.php?t=3043&p=7192#p7192 <![CDATA[Re: What are average hand values on flop, turn and river?]]> Flop AKQJ6
Turn 66AT7
River JJAT7
More surprising to me was thenumber of tied hands in my simulation. I'm getting 4% of hands turning out as a split pot. Does that seem right to anybody who may have looked at this kind of thing? Seems high to me.

Statistics: Posted by CaptnCanary — Sat May 06, 2017 3:30 pm


]]>
2017-05-05T13:01:04+00:00 2017-05-05T13:01:04+00:00 http://poker-ai.org/phpbb/viewtopic.php?t=3043&p=7191#p7191 <![CDATA[What are average hand values on flop, turn and river?]]> I'm expecting answers such as:

Flop: TTK72
Turn: QQ876
River: AA876

The reason I would like to know this is that I've programmed a bot that acts randomly, and my next step is to program a bot that beats it. So I just need to continue in the hand if my hand strength at each betting round is above average in order to be profitable in the long run against a random hand.

Thanks

Statistics: Posted by CaptnCanary — Fri May 05, 2017 1:01 pm


]]>