├── Kuhn-Poker └── first_vanilla_cfr_kuhnpoker.py ├── README.md ├── Ressources ├── CFR │ ├── Introduction_to_CFR.pdf │ ├── MCCFR │ │ ├── .DS_Store │ │ ├── Monte_Carlo_CFR_CarnegieUniversity.pdf │ │ ├── Monte_carlo_CFR.pdf │ │ └── Monte_carlo_Sampling.pdf │ └── deep_cfr.pdf ├── NIPS-2017-safe-and-nested-subgame-solving-for-imperfect-information-games-Paper.pdf ├── Poker IAs │ ├── DeepStack.pdf │ └── Libratus.pdf ├── Théorie des jeux │ ├── Theorie_jeux_CNRS.pdf │ └── theoriedesjeux.pdf └── thesis_cocreator_libratus.pdf ├── Rock-Paper-Scissors └── my_first_cfr_rockpaperscissors.py ├── azure_tests.py ├── config.json ├── run-kunhpokercfr.py └── test └── test.py /Kuhn-Poker/first_vanilla_cfr_kuhnpoker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iciamyplant/Poker_CFR/HEAD/Kuhn-Poker/first_vanilla_cfr_kuhnpoker.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iciamyplant/Poker_CFR/HEAD/README.md -------------------------------------------------------------------------------- /Ressources/CFR/Introduction_to_CFR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iciamyplant/Poker_CFR/HEAD/Ressources/CFR/Introduction_to_CFR.pdf -------------------------------------------------------------------------------- /Ressources/CFR/MCCFR/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iciamyplant/Poker_CFR/HEAD/Ressources/CFR/MCCFR/.DS_Store -------------------------------------------------------------------------------- /Ressources/CFR/MCCFR/Monte_Carlo_CFR_CarnegieUniversity.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iciamyplant/Poker_CFR/HEAD/Ressources/CFR/MCCFR/Monte_Carlo_CFR_CarnegieUniversity.pdf -------------------------------------------------------------------------------- /Ressources/CFR/MCCFR/Monte_carlo_CFR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iciamyplant/Poker_CFR/HEAD/Ressources/CFR/MCCFR/Monte_carlo_CFR.pdf -------------------------------------------------------------------------------- /Ressources/CFR/MCCFR/Monte_carlo_Sampling.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iciamyplant/Poker_CFR/HEAD/Ressources/CFR/MCCFR/Monte_carlo_Sampling.pdf -------------------------------------------------------------------------------- /Ressources/CFR/deep_cfr.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iciamyplant/Poker_CFR/HEAD/Ressources/CFR/deep_cfr.pdf -------------------------------------------------------------------------------- /Ressources/NIPS-2017-safe-and-nested-subgame-solving-for-imperfect-information-games-Paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iciamyplant/Poker_CFR/HEAD/Ressources/NIPS-2017-safe-and-nested-subgame-solving-for-imperfect-information-games-Paper.pdf -------------------------------------------------------------------------------- /Ressources/Poker IAs/DeepStack.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iciamyplant/Poker_CFR/HEAD/Ressources/Poker IAs/DeepStack.pdf -------------------------------------------------------------------------------- /Ressources/Poker IAs/Libratus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iciamyplant/Poker_CFR/HEAD/Ressources/Poker IAs/Libratus.pdf -------------------------------------------------------------------------------- /Ressources/Théorie des jeux/Theorie_jeux_CNRS.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iciamyplant/Poker_CFR/HEAD/Ressources/Théorie des jeux/Theorie_jeux_CNRS.pdf -------------------------------------------------------------------------------- /Ressources/Théorie des jeux/theoriedesjeux.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iciamyplant/Poker_CFR/HEAD/Ressources/Théorie des jeux/theoriedesjeux.pdf -------------------------------------------------------------------------------- /Ressources/thesis_cocreator_libratus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iciamyplant/Poker_CFR/HEAD/Ressources/thesis_cocreator_libratus.pdf -------------------------------------------------------------------------------- /Rock-Paper-Scissors/my_first_cfr_rockpaperscissors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iciamyplant/Poker_CFR/HEAD/Rock-Paper-Scissors/my_first_cfr_rockpaperscissors.py -------------------------------------------------------------------------------- /azure_tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iciamyplant/Poker_CFR/HEAD/azure_tests.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iciamyplant/Poker_CFR/HEAD/config.json -------------------------------------------------------------------------------- /run-kunhpokercfr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iciamyplant/Poker_CFR/HEAD/run-kunhpokercfr.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- 1 | print('Hello I am me') --------------------------------------------------------------------------------