Live data from Hacker News

Releasing my Texas holdem solver (opensourced)

github.com

11–17 of 17 posts

Re: Releasing my Texas holdem solver (opensourced)

#11
post #3

this is very cool. another interesting open-source project for imperfect-information game solving is DeepMind's OpenSpiel: https://github.com/deepmind/open_spiel However as far as poker goes, I believe they only provide toy versions of the game, even though theoretically you could put in your own implementation. I've noticed that in this part of the AI world, things tend to be closed-source for whatever reason and I…

Hi, thanks:)

It does have the large poker games too. You can find generalized poker in the universal_poker game, which wraps the Annual Computer Poker Competition codebase:

https://github.com/deepmind/open_spiel/blob/master/open_spie...

Check out universal_poker_test.cc for example uses. It supports limit and common abstractions as well as the full game of no-limit. There is an example of FCPA which you can play at the keyboard in examples/

Re: Releasing my Texas holdem solver (opensourced)

#12

This is huge! I don't know how to thank you enough! I was saving for piosolver so I defintely will give this a try.

After a few hours of installing all the libraries, it worked. I still don't understand much of what I'm doing, but I managed to run riversolver.sh and view the outputs :) Does it support scenarios with multiple opponents?

Re: Releasing my Texas holdem solver (opensourced)

#13
post #9

What's the reason for not entirely resorting to either python or Java?

The reason is simple, I'm not exactly a full time java engineer, as a matter of fact, I write python 80% of my time, all of this project's prototype is written in python in another project. I'm slowly transfering some of the code to java, for now the tree construction part is still in python.

Re: Releasing my Texas holdem solver (opensourced)

#14

Earlier quoted context omitted.

The author of piosolver stop providing the free version for obvious reasons.

The reasons are not obvious to me. Why did they stop? Cheating? Annoying support requests? Could sell for more money?

My idea is the free version has some drawbacks: (1) people don't want to pay will stick with this free version (2) it's like a sample pack for solver, you may download the free version and say "it's not so good after all". Bad for business (3) it increase the probability of been hacked

Re: Releasing my Texas holdem solver (opensourced)

#15

This is huge! I don't know how to thank you enough! I was saving for piosolver so I defintely will give this a try.

After a few hours of installing all the libraries, it worked. I still don't understand much of what I'm doing, but I managed to run riversolver.sh and view the outputs :) Does it support scenarios with multiple opponents?

Wow. Thank you for your support

For now I still struggle to make it work in two player's preflop (take a ton of time and computation resources). In the future if a lot of people ask for multiplayer I think I will write the code~

Re: Releasing my Texas holdem solver (opensourced)

#17
post #3

this is very cool. another interesting open-source project for imperfect-information game solving is DeepMind's OpenSpiel: https://github.com/deepmind/open_spiel However as far as poker goes, I believe they only provide toy versions of the game, even though theoretically you could put in your own implementation. I've noticed that in this part of the AI world, things tend to be closed-source for whatever reason and I…

Hi, thanks:) It does have the large poker games too. You can find generalized poker in the universal_poker game, which wraps the Annual Computer Poker Competition codebase: https://github.com/deepmind/open_spiel/blob/master/open_spie... Check out universal_poker_test.cc for example uses. It supports limit and common abstractions as well as the full game of no-limit. There is an example of FCPA which you can play at t…

oh cool, good to know!
Post reply on HN