Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added Python efr algorithm implementation #1094

Merged
merged 22 commits into from
May 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/algorithms.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ CFR against a best responder (CFR-BR) | Tabular
Exploitability / Best response | Tabular | [Shoham & Leyton-Brown '09](http://masfoundations.org/) | ![](_static/green_circ10.png "green circle")
External sampling Monte Carlo CFR | Tabular | [Lanctot et al. '09](http://mlanctot.info/files/papers/nips09mccfr.pdf), [Lanctot '13](http://mlanctot.info/files/papers/PhD_Thesis_MarcLanctot.pdf) | ![](_static/green_circ10.png "green circle")
Fixed Strategy Iteration CFR (FSICFR) | Tabular | [Neller &amp; Hnath '11](https://cupola.gettysburg.edu/csfac/2/) | <font color="orange"><b>~</b></font>
Extensive-form Regret Minimization | Tabular | [Morrill et. al. '22](https://arxiv.org/abs/2102.06973) | <font color="orange"><b>~</b></font>
Mean-field Ficticious Play for MFG | Tabular | [Perrin et. al. '20](https://arxiv.org/abs/2007.03458) | <font color="orange"><b>~</b></font>
Online Mirror Descent for MFG | Tabular | [Perolat et. al. '21](https://arxiv.org/abs/2103.00623) | <font color="orange"><b>~</b></font>
Munchausen Online Mirror Descent for MFG | Tabular | [Lauriere et. al. '22](https://arxiv.org/pdf/2203.11973) | <font color="orange"><b>~</b></font>
Expand Down
1 change: 1 addition & 0 deletions open_spiel/python/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -182,6 +182,7 @@ set(PYTHON_TESTS ${PYTHON_TESTS}
algorithms/boltzmann_tabular_qlearner_test.py
algorithms/cfr_br_test.py
algorithms/cfr_test.py
algorithms/efr_test.py
algorithms/evaluate_bots_test.py
algorithms/expected_game_score_test.py
algorithms/external_sampling_mccfr_test.py
Expand Down
Loading