├── LICENSE ├── README.md ├── UIplay.py ├── __init__.py ├── bgm ├── Hanser - Cyberangel.mp3 ├── yinzi.ogg ├── youxi.mp3 └── youxi.ogg ├── collect.py ├── config.py ├── game.py ├── imgs ├── board.png ├── fire.png ├── heibing.png ├── heiche.png ├── heima.png ├── heipao.png ├── heishi.png ├── heishuai.png ├── heixiang.png ├── hongbing.png ├── hongche.png ├── hongma.png ├── hongpao.png ├── hongshi.png ├── hongshuai.png ├── hongxiang.png └── 你的名字4k超清壁纸_彼岸图网.jpg ├── mcts.py ├── mcts_pure.py ├── models └── 用来存放每100个step的模型.txt ├── my_redis.py ├── paddle_net.py ├── play_with_ai.py ├── pytorch_net.py ├── train.py └── zip_array.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/README.md -------------------------------------------------------------------------------- /UIplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/UIplay.py -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | """使用alphazero打造属于你自己的象棋AI""" -------------------------------------------------------------------------------- /bgm/Hanser - Cyberangel.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/bgm/Hanser - Cyberangel.mp3 -------------------------------------------------------------------------------- /bgm/yinzi.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/bgm/yinzi.ogg -------------------------------------------------------------------------------- /bgm/youxi.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/bgm/youxi.mp3 -------------------------------------------------------------------------------- /bgm/youxi.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/bgm/youxi.ogg -------------------------------------------------------------------------------- /collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/collect.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/config.py -------------------------------------------------------------------------------- /game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/game.py -------------------------------------------------------------------------------- /imgs/board.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/imgs/board.png -------------------------------------------------------------------------------- /imgs/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/imgs/fire.png -------------------------------------------------------------------------------- /imgs/heibing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/imgs/heibing.png -------------------------------------------------------------------------------- /imgs/heiche.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/imgs/heiche.png -------------------------------------------------------------------------------- /imgs/heima.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/imgs/heima.png -------------------------------------------------------------------------------- /imgs/heipao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/imgs/heipao.png -------------------------------------------------------------------------------- /imgs/heishi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/imgs/heishi.png -------------------------------------------------------------------------------- /imgs/heishuai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/imgs/heishuai.png -------------------------------------------------------------------------------- /imgs/heixiang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/imgs/heixiang.png -------------------------------------------------------------------------------- /imgs/hongbing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/imgs/hongbing.png -------------------------------------------------------------------------------- /imgs/hongche.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/imgs/hongche.png -------------------------------------------------------------------------------- /imgs/hongma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/imgs/hongma.png -------------------------------------------------------------------------------- /imgs/hongpao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/imgs/hongpao.png -------------------------------------------------------------------------------- /imgs/hongshi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/imgs/hongshi.png -------------------------------------------------------------------------------- /imgs/hongshuai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/imgs/hongshuai.png -------------------------------------------------------------------------------- /imgs/hongxiang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/imgs/hongxiang.png -------------------------------------------------------------------------------- /imgs/你的名字4k超清壁纸_彼岸图网.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/imgs/你的名字4k超清壁纸_彼岸图网.jpg -------------------------------------------------------------------------------- /mcts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/mcts.py -------------------------------------------------------------------------------- /mcts_pure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/mcts_pure.py -------------------------------------------------------------------------------- /models/用来存放每100个step的模型.txt: -------------------------------------------------------------------------------- 1 | 用来存放每100个step的模型 2 | -------------------------------------------------------------------------------- /my_redis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/my_redis.py -------------------------------------------------------------------------------- /paddle_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/paddle_net.py -------------------------------------------------------------------------------- /play_with_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/play_with_ai.py -------------------------------------------------------------------------------- /pytorch_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/pytorch_net.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/train.py -------------------------------------------------------------------------------- /zip_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tensorfly-gpu/aichess/HEAD/zip_array.py --------------------------------------------------------------------------------