--- pretty_name: Range Reader v0.1 — CFR Self-Play Hand Histories license: apache-2.0 annotations_creators: - machine-generated source_datasets: - original size_categories: - 100K ``` Cash games, 5/10 blinds, randomized stacks, 2- to 6-handed (even split). Five agents, four built on counterfactual regret: | Agent | Type | Notes | |---|---|---| | `CFR-Configurable` | real-time CFR | known-card estimator, coarse bet sizes | | `GTO-Experiment` | real-time CFR | — | | `6Max-RFI-GTO`, `Pekarstas-6max-RFI` | preflop CFR chart | fixed open ranges | | `RandomPotControl` | pot-control heuristic | not CFR; call odds scale with pot, plus noise | ## Caveats The CFR is a real solve, but bounded — strong on the immediate decision, thin past it: - Up to 2048 ms per decision, 128 root iterations, regret-convergence early stop, root width set to the core count. - Lookahead thins fast — one iteration and width 1 below the root, so multi-street planning is shallow. - Coarse action abstraction: a handful of bet sizes (~2.5x raises, ⅓/⅔/full pot, shove). - Charted agents play fixed preflop ranges; the pot-control agent is a heuristic. Expect competent, varied poker — short of a full-tree Nash equilibrium. ## Schema Each line is `{"ohh": {...}}`: table and blinds, `players` with seats and stacks, `rounds` of streets, and per-street `actions` (post, deal, fold, call, raise, all-in). Dealt cards carry the `cards` field. See the [OHH spec](https://hh-specs.handhistory.org/). ## License Apache-2.0.