├── .gitignore ├── README.md ├── cache ├── hole_card_estimation.pkl └── maping.pkl ├── imgs └── tensorboard.png ├── notebooks ├── A3C.ipynb ├── CardsEmbeddings.ipynb ├── DQNPlayerTesting.ipynb ├── DQNPlayerTraining.ipynb ├── EDA.ipynb ├── HandStrengthEvaluating.ipynb └── MappingCardToReward.ipynb ├── requirements.txt └── scripts ├── CardsEmbeddings.py ├── DQNPlayer.py ├── MyEmulator.py ├── PlayerModels.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvgenyKashin/TensorPoker/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvgenyKashin/TensorPoker/HEAD/README.md -------------------------------------------------------------------------------- /cache/hole_card_estimation.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvgenyKashin/TensorPoker/HEAD/cache/hole_card_estimation.pkl -------------------------------------------------------------------------------- /cache/maping.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvgenyKashin/TensorPoker/HEAD/cache/maping.pkl -------------------------------------------------------------------------------- /imgs/tensorboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvgenyKashin/TensorPoker/HEAD/imgs/tensorboard.png -------------------------------------------------------------------------------- /notebooks/A3C.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvgenyKashin/TensorPoker/HEAD/notebooks/A3C.ipynb -------------------------------------------------------------------------------- /notebooks/CardsEmbeddings.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvgenyKashin/TensorPoker/HEAD/notebooks/CardsEmbeddings.ipynb -------------------------------------------------------------------------------- /notebooks/DQNPlayerTesting.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvgenyKashin/TensorPoker/HEAD/notebooks/DQNPlayerTesting.ipynb -------------------------------------------------------------------------------- /notebooks/DQNPlayerTraining.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvgenyKashin/TensorPoker/HEAD/notebooks/DQNPlayerTraining.ipynb -------------------------------------------------------------------------------- /notebooks/EDA.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvgenyKashin/TensorPoker/HEAD/notebooks/EDA.ipynb -------------------------------------------------------------------------------- /notebooks/HandStrengthEvaluating.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvgenyKashin/TensorPoker/HEAD/notebooks/HandStrengthEvaluating.ipynb -------------------------------------------------------------------------------- /notebooks/MappingCardToReward.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvgenyKashin/TensorPoker/HEAD/notebooks/MappingCardToReward.ipynb -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tensorflow 2 | numpy 3 | pandas 4 | PyPokerEngine -------------------------------------------------------------------------------- /scripts/CardsEmbeddings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvgenyKashin/TensorPoker/HEAD/scripts/CardsEmbeddings.py -------------------------------------------------------------------------------- /scripts/DQNPlayer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvgenyKashin/TensorPoker/HEAD/scripts/DQNPlayer.py -------------------------------------------------------------------------------- /scripts/MyEmulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvgenyKashin/TensorPoker/HEAD/scripts/MyEmulator.py -------------------------------------------------------------------------------- /scripts/PlayerModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvgenyKashin/TensorPoker/HEAD/scripts/PlayerModels.py -------------------------------------------------------------------------------- /scripts/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvgenyKashin/TensorPoker/HEAD/scripts/util.py --------------------------------------------------------------------------------