├── .gitignore ├── README.md ├── code_concepts ├── ceil.py ├── check_checkpoint.py ├── check_class.py ├── choice.py ├── class_methods.py ├── compare_ckpts.py ├── decorators │ └── decorator_example.py ├── dict_attr.py ├── divide.py ├── entropy.py ├── gui_test.py ├── inheritance_test.py ├── json_with_int.py ├── lcm.py ├── max_changed_positions.py ├── mp_concepts │ ├── mp_ManyToOneA.py │ ├── mp_ManyToOneB.py │ ├── mp_design.py │ └── torch_mp_with_spawn.py ├── np_bool_negation.py ├── object_vs_dict.py ├── pt_proc.py ├── read_yaml.py ├── sample_hand_history.txt ├── std_var.py ├── test_np_mul.py ├── tf_test.py ├── torch_mul_bool_float.py ├── type_from_self.py ├── unpack_into_list.py └── vector_norm.py ├── envy.py ├── game_configs └── 3players_2bets_gc.yaml ├── gui ├── TkInterColorCharts.png ├── gui_hdmk.py ├── human_game_gui.py ├── imgs │ ├── 002.CN.cards001.comp │ ├── ai.png │ ├── aiico.png │ ├── cards │ │ ├── 002.CN.cards.png │ │ ├── 4h-3d-2s-ac.png │ │ └── dfR │ │ │ ├── 2C0000.png │ │ │ ├── 2D0000.png │ │ │ ├── 2H0000.png │ │ │ ├── 2S0000.png │ │ │ ├── 3C0000.png │ │ │ ├── 3D0000.png │ │ │ ├── 3H0000.png │ │ │ ├── 3S0000.png │ │ │ ├── 4C0000.png │ │ │ ├── 4D0000.png │ │ │ ├── 4H0000.png │ │ │ ├── 4S0000.png │ │ │ ├── 5C0000.png │ │ │ ├── 5D0000.png │ │ │ ├── 5H0000.png │ │ │ ├── 5S0000.png │ │ │ ├── 6C0000.png │ │ │ ├── 6D0000.png │ │ │ ├── 6H0000.png │ │ │ ├── 6S0000.png │ │ │ ├── 7C0000.png │ │ │ ├── 7D0000.png │ │ │ ├── 7H0000.png │ │ │ ├── 7S0000.png │ │ │ ├── 8C0000.png │ │ │ ├── 8D0000.png │ │ │ ├── 8H0000.png │ │ │ ├── 8S0000.png │ │ │ ├── 9C0000.png │ │ │ ├── 9D0000.png │ │ │ ├── 9H0000.png │ │ │ ├── 9S0000.png │ │ │ ├── AC0000.png │ │ │ ├── AD0000.png │ │ │ ├── AH0000.png │ │ │ ├── AS0000.png │ │ │ ├── DC0000.png │ │ │ ├── DD0000.png │ │ │ ├── DH0000.png │ │ │ ├── DS0000.png │ │ │ ├── JC0000.png │ │ │ ├── JD0000.png │ │ │ ├── JH0000.png │ │ │ ├── JS0000.png │ │ │ ├── KC0000.png │ │ │ ├── KD0000.png │ │ │ ├── KH0000.png │ │ │ ├── KS0000.png │ │ │ ├── REV0000.png │ │ │ ├── TC0000.png │ │ │ ├── TD0000.png │ │ │ ├── TH0000.png │ │ │ └── TS0000.png │ ├── dealer.png │ ├── no_dealer.png │ ├── pypoks_bar.png │ ├── pypoks_bar_alpha_black.png │ ├── pypoks_bar_alpha_white.png │ ├── user-icon-male-person-symbol-profile-avatar-vector-20787339.jpg │ └── user.png └── tkinter_package │ ├── README.md │ └── python3-tk_3.11.5-1_amd64.deb ├── images ├── cardNet_training.png ├── pypoksTB.png ├── pypoks_HDMK.png ├── pypoks_logo.png ├── pypoks_logo_INV.comp ├── pypoks_logo_alph_black.png ├── pypoks_logo_alph_white.png ├── pypoks_logo_alph_white_add.png ├── pypoks_ques.comp ├── pypoks_ques.png ├── ranks_probs.png ├── table_players.png └── terminal_HDMK.png ├── podecide ├── cardNet │ ├── cardNet.md │ ├── cardNet_batcher.py │ ├── cardNet_eval.py │ ├── cardNet_export_onnx.py │ ├── cardNet_module.py │ ├── cardNet_train.py │ └── run_TB.sh ├── dmk.py ├── dmk_module.py ├── dmk_motorch.py ├── game_manager.py ├── game_state.py ├── podecide.md ├── stats │ ├── player_stats.py │ └── won_manager.py └── tools │ ├── devices_monitor.py │ ├── tbwr_dmk.py │ └── update_sync.py ├── pologic ├── game_config.py ├── hand_history.py ├── podeck.py ├── pologic.md ├── potable.py └── sample_hand.txt ├── requirements.txt ├── run ├── after_run │ ├── copy_dirs.py │ ├── rename.py │ ├── reports.py │ ├── review_hpms.py │ └── review_points.py ├── functions.py ├── run_human_game.py ├── run_simple_TR_PL.py ├── run_train_loop_refs.py └── run_train_loop_refs_learners.py ├── run_TB.sh └── tests ├── gui └── test_gui.py ├── podecide ├── cardNet │ ├── test_cardNet.py │ └── test_cardNet_batcher.py ├── stats │ └── test_player_stats.py ├── test_dmk.py ├── test_dmk_module.py ├── test_game_manager.py ├── test_games_manager.py └── tools │ └── test_gpu_monitor.py ├── pologic ├── test_podeck.py └── test_potable.py └── run └── test_functions.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/README.md -------------------------------------------------------------------------------- /code_concepts/ceil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/ceil.py -------------------------------------------------------------------------------- /code_concepts/check_checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/check_checkpoint.py -------------------------------------------------------------------------------- /code_concepts/check_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/check_class.py -------------------------------------------------------------------------------- /code_concepts/choice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/choice.py -------------------------------------------------------------------------------- /code_concepts/class_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/class_methods.py -------------------------------------------------------------------------------- /code_concepts/compare_ckpts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/compare_ckpts.py -------------------------------------------------------------------------------- /code_concepts/decorators/decorator_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/decorators/decorator_example.py -------------------------------------------------------------------------------- /code_concepts/dict_attr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/dict_attr.py -------------------------------------------------------------------------------- /code_concepts/divide.py: -------------------------------------------------------------------------------- 1 | x = 150 // 4 2 | print(x, type(x)) -------------------------------------------------------------------------------- /code_concepts/entropy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/entropy.py -------------------------------------------------------------------------------- /code_concepts/gui_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/gui_test.py -------------------------------------------------------------------------------- /code_concepts/inheritance_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/inheritance_test.py -------------------------------------------------------------------------------- /code_concepts/json_with_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/json_with_int.py -------------------------------------------------------------------------------- /code_concepts/lcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/lcm.py -------------------------------------------------------------------------------- /code_concepts/max_changed_positions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/max_changed_positions.py -------------------------------------------------------------------------------- /code_concepts/mp_concepts/mp_ManyToOneA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/mp_concepts/mp_ManyToOneA.py -------------------------------------------------------------------------------- /code_concepts/mp_concepts/mp_ManyToOneB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/mp_concepts/mp_ManyToOneB.py -------------------------------------------------------------------------------- /code_concepts/mp_concepts/mp_design.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/mp_concepts/mp_design.py -------------------------------------------------------------------------------- /code_concepts/mp_concepts/torch_mp_with_spawn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/mp_concepts/torch_mp_with_spawn.py -------------------------------------------------------------------------------- /code_concepts/np_bool_negation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/np_bool_negation.py -------------------------------------------------------------------------------- /code_concepts/object_vs_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/object_vs_dict.py -------------------------------------------------------------------------------- /code_concepts/pt_proc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/pt_proc.py -------------------------------------------------------------------------------- /code_concepts/read_yaml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/read_yaml.py -------------------------------------------------------------------------------- /code_concepts/sample_hand_history.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/sample_hand_history.txt -------------------------------------------------------------------------------- /code_concepts/std_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/std_var.py -------------------------------------------------------------------------------- /code_concepts/test_np_mul.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/test_np_mul.py -------------------------------------------------------------------------------- /code_concepts/tf_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/tf_test.py -------------------------------------------------------------------------------- /code_concepts/torch_mul_bool_float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/torch_mul_bool_float.py -------------------------------------------------------------------------------- /code_concepts/type_from_self.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/type_from_self.py -------------------------------------------------------------------------------- /code_concepts/unpack_into_list.py: -------------------------------------------------------------------------------- 1 | tp = (4,5) 2 | ls = [1,2,3,*tp] 3 | print(ls) -------------------------------------------------------------------------------- /code_concepts/vector_norm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/code_concepts/vector_norm.py -------------------------------------------------------------------------------- /envy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/envy.py -------------------------------------------------------------------------------- /game_configs/3players_2bets_gc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/game_configs/3players_2bets_gc.yaml -------------------------------------------------------------------------------- /gui/TkInterColorCharts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/TkInterColorCharts.png -------------------------------------------------------------------------------- /gui/gui_hdmk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/gui_hdmk.py -------------------------------------------------------------------------------- /gui/human_game_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/human_game_gui.py -------------------------------------------------------------------------------- /gui/imgs/002.CN.cards001.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/002.CN.cards001.comp -------------------------------------------------------------------------------- /gui/imgs/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/ai.png -------------------------------------------------------------------------------- /gui/imgs/aiico.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/aiico.png -------------------------------------------------------------------------------- /gui/imgs/cards/002.CN.cards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/002.CN.cards.png -------------------------------------------------------------------------------- /gui/imgs/cards/4h-3d-2s-ac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/4h-3d-2s-ac.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/2C0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/2C0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/2D0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/2D0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/2H0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/2H0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/2S0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/2S0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/3C0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/3C0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/3D0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/3D0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/3H0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/3H0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/3S0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/3S0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/4C0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/4C0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/4D0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/4D0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/4H0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/4H0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/4S0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/4S0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/5C0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/5C0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/5D0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/5D0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/5H0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/5H0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/5S0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/5S0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/6C0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/6C0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/6D0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/6D0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/6H0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/6H0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/6S0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/6S0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/7C0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/7C0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/7D0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/7D0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/7H0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/7H0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/7S0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/7S0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/8C0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/8C0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/8D0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/8D0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/8H0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/8H0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/8S0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/8S0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/9C0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/9C0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/9D0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/9D0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/9H0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/9H0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/9S0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/9S0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/AC0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/AC0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/AD0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/AD0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/AH0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/AH0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/AS0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/AS0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/DC0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/DC0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/DD0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/DD0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/DH0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/DH0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/DS0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/DS0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/JC0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/JC0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/JD0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/JD0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/JH0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/JH0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/JS0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/JS0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/KC0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/KC0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/KD0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/KD0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/KH0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/KH0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/KS0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/KS0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/REV0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/REV0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/TC0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/TC0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/TD0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/TD0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/TH0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/TH0000.png -------------------------------------------------------------------------------- /gui/imgs/cards/dfR/TS0000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/cards/dfR/TS0000.png -------------------------------------------------------------------------------- /gui/imgs/dealer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/dealer.png -------------------------------------------------------------------------------- /gui/imgs/no_dealer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/no_dealer.png -------------------------------------------------------------------------------- /gui/imgs/pypoks_bar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/pypoks_bar.png -------------------------------------------------------------------------------- /gui/imgs/pypoks_bar_alpha_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/pypoks_bar_alpha_black.png -------------------------------------------------------------------------------- /gui/imgs/pypoks_bar_alpha_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/pypoks_bar_alpha_white.png -------------------------------------------------------------------------------- /gui/imgs/user-icon-male-person-symbol-profile-avatar-vector-20787339.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/user-icon-male-person-symbol-profile-avatar-vector-20787339.jpg -------------------------------------------------------------------------------- /gui/imgs/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/imgs/user.png -------------------------------------------------------------------------------- /gui/tkinter_package/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/tkinter_package/README.md -------------------------------------------------------------------------------- /gui/tkinter_package/python3-tk_3.11.5-1_amd64.deb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/gui/tkinter_package/python3-tk_3.11.5-1_amd64.deb -------------------------------------------------------------------------------- /images/cardNet_training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/images/cardNet_training.png -------------------------------------------------------------------------------- /images/pypoksTB.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/images/pypoksTB.png -------------------------------------------------------------------------------- /images/pypoks_HDMK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/images/pypoks_HDMK.png -------------------------------------------------------------------------------- /images/pypoks_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/images/pypoks_logo.png -------------------------------------------------------------------------------- /images/pypoks_logo_INV.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/images/pypoks_logo_INV.comp -------------------------------------------------------------------------------- /images/pypoks_logo_alph_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/images/pypoks_logo_alph_black.png -------------------------------------------------------------------------------- /images/pypoks_logo_alph_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/images/pypoks_logo_alph_white.png -------------------------------------------------------------------------------- /images/pypoks_logo_alph_white_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/images/pypoks_logo_alph_white_add.png -------------------------------------------------------------------------------- /images/pypoks_ques.comp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/images/pypoks_ques.comp -------------------------------------------------------------------------------- /images/pypoks_ques.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/images/pypoks_ques.png -------------------------------------------------------------------------------- /images/ranks_probs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/images/ranks_probs.png -------------------------------------------------------------------------------- /images/table_players.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/images/table_players.png -------------------------------------------------------------------------------- /images/terminal_HDMK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/images/terminal_HDMK.png -------------------------------------------------------------------------------- /podecide/cardNet/cardNet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/podecide/cardNet/cardNet.md -------------------------------------------------------------------------------- /podecide/cardNet/cardNet_batcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/podecide/cardNet/cardNet_batcher.py -------------------------------------------------------------------------------- /podecide/cardNet/cardNet_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/podecide/cardNet/cardNet_eval.py -------------------------------------------------------------------------------- /podecide/cardNet/cardNet_export_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/podecide/cardNet/cardNet_export_onnx.py -------------------------------------------------------------------------------- /podecide/cardNet/cardNet_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/podecide/cardNet/cardNet_module.py -------------------------------------------------------------------------------- /podecide/cardNet/cardNet_train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/podecide/cardNet/cardNet_train.py -------------------------------------------------------------------------------- /podecide/cardNet/run_TB.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/podecide/cardNet/run_TB.sh -------------------------------------------------------------------------------- /podecide/dmk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/podecide/dmk.py -------------------------------------------------------------------------------- /podecide/dmk_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/podecide/dmk_module.py -------------------------------------------------------------------------------- /podecide/dmk_motorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/podecide/dmk_motorch.py -------------------------------------------------------------------------------- /podecide/game_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/podecide/game_manager.py -------------------------------------------------------------------------------- /podecide/game_state.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/podecide/game_state.py -------------------------------------------------------------------------------- /podecide/podecide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/podecide/podecide.md -------------------------------------------------------------------------------- /podecide/stats/player_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/podecide/stats/player_stats.py -------------------------------------------------------------------------------- /podecide/stats/won_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/podecide/stats/won_manager.py -------------------------------------------------------------------------------- /podecide/tools/devices_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/podecide/tools/devices_monitor.py -------------------------------------------------------------------------------- /podecide/tools/tbwr_dmk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/podecide/tools/tbwr_dmk.py -------------------------------------------------------------------------------- /podecide/tools/update_sync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/podecide/tools/update_sync.py -------------------------------------------------------------------------------- /pologic/game_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/pologic/game_config.py -------------------------------------------------------------------------------- /pologic/hand_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/pologic/hand_history.py -------------------------------------------------------------------------------- /pologic/podeck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/pologic/podeck.py -------------------------------------------------------------------------------- /pologic/pologic.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/pologic/pologic.md -------------------------------------------------------------------------------- /pologic/potable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/pologic/potable.py -------------------------------------------------------------------------------- /pologic/sample_hand.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/pologic/sample_hand.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/requirements.txt -------------------------------------------------------------------------------- /run/after_run/copy_dirs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/run/after_run/copy_dirs.py -------------------------------------------------------------------------------- /run/after_run/rename.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/run/after_run/rename.py -------------------------------------------------------------------------------- /run/after_run/reports.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/run/after_run/reports.py -------------------------------------------------------------------------------- /run/after_run/review_hpms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/run/after_run/review_hpms.py -------------------------------------------------------------------------------- /run/after_run/review_points.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/run/after_run/review_points.py -------------------------------------------------------------------------------- /run/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/run/functions.py -------------------------------------------------------------------------------- /run/run_human_game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/run/run_human_game.py -------------------------------------------------------------------------------- /run/run_simple_TR_PL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/run/run_simple_TR_PL.py -------------------------------------------------------------------------------- /run/run_train_loop_refs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/run/run_train_loop_refs.py -------------------------------------------------------------------------------- /run/run_train_loop_refs_learners.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/run/run_train_loop_refs_learners.py -------------------------------------------------------------------------------- /run_TB.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/run_TB.sh -------------------------------------------------------------------------------- /tests/gui/test_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/tests/gui/test_gui.py -------------------------------------------------------------------------------- /tests/podecide/cardNet/test_cardNet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/tests/podecide/cardNet/test_cardNet.py -------------------------------------------------------------------------------- /tests/podecide/cardNet/test_cardNet_batcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/tests/podecide/cardNet/test_cardNet_batcher.py -------------------------------------------------------------------------------- /tests/podecide/stats/test_player_stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/tests/podecide/stats/test_player_stats.py -------------------------------------------------------------------------------- /tests/podecide/test_dmk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/tests/podecide/test_dmk.py -------------------------------------------------------------------------------- /tests/podecide/test_dmk_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/tests/podecide/test_dmk_module.py -------------------------------------------------------------------------------- /tests/podecide/test_game_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/tests/podecide/test_game_manager.py -------------------------------------------------------------------------------- /tests/podecide/test_games_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/tests/podecide/test_games_manager.py -------------------------------------------------------------------------------- /tests/podecide/tools/test_gpu_monitor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/tests/podecide/tools/test_gpu_monitor.py -------------------------------------------------------------------------------- /tests/pologic/test_podeck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/tests/pologic/test_podeck.py -------------------------------------------------------------------------------- /tests/pologic/test_potable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/tests/pologic/test_potable.py -------------------------------------------------------------------------------- /tests/run/test_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piteren/pypoks/HEAD/tests/run/test_functions.py --------------------------------------------------------------------------------