slumbot2019 icon indicating copy to clipboard operation
slumbot2019 copied to clipboard

Implementations of CFR for solving a variety of Holdem-like poker games

Results 22 slumbot2019 issues
Sort by recently updated
recently updated
newest added

Hi Eric, Thanks for making this available. This [GetNewBetTos](https://github.com/ericgjackson/slumbot2019/blob/a1b65b84c89ab2eff9e2e0c16cedcfcbd479dffd/src/mp_betting_tree.cpp#L343) function call is used in building the multiplayer betting tree, but its implementation assumes 2 players only when [calculating the pot...

I ran the MCCFR example and now want to inspect the strategy. Preflop works like a charm: ../bin/show_preflop_strategy holdem_params nhs2_params mb1b1_params tcfr_params 0 cum I do get the same result...

Hi,ericgjackson, I want to connet with acpc server ,but there is an error when I start the client by running _/code2/slumbot2019-master/runs$ ../bin/run_bot holdem_params nhs2_params mb4b3_params tcfr_params 0 2 "**this is...

Hi Eric, I am trying to compile your code but get stuck when compiling vcfr_state.cpp: ``` gcc -std=c++17 -Wall -O3 -march=native -ffast-math -flto -c -o obj/vcfr_state.o src/vcfr_state.cpp src/vcfr_state.cpp:27:22: error: no...

When I follow the instructions in the readme for the MCCFR example I get an error when running the last command: ../bin/run_tcfr holdem_params nhs2_params mb1b1_params **ecfr_params** 8 1 2 100000000...

Thanks for making this project available. Following the instructions after running CFR+ on the simple game we can calculate exploitability and have the regrets in the /data directory. Is there...

Doesn't work out for me. `#ifdef __CYGWIN__` works.

cool open source for the popular slumbot. does mccfr can converge faster than cfr+ in your implementation. any acceleration technique for the implementation of mccfr. In my experiment, i find...

hi @ericgjackson I want to know the relationship between "the number of the boards" and "the number of the buckets". I know there are 169 buckets on the pre-flop,1755 buckets...