├── .gitignore ├── .gitmodules ├── .travis.yml ├── AUTHORS ├── CONTRIBUTING.md ├── COPYING ├── Dockerfile ├── README.md ├── appveyor.yml ├── cmake └── Modules │ ├── CMakePushCheckState.cmake │ ├── CheckFortranFunctionExists.cmake │ ├── CheckFunctionExists.cmake │ ├── FindBLAS.cmake │ ├── FindOpenCL.cmake │ ├── FindPackageHandleStandardArgs.cmake │ └── FindPackageMessage.cmake ├── ggzero_95 ├── ggzero_V99 ├── ggzero_v94 ├── go └── src │ ├── client │ ├── README.md │ ├── http │ │ └── http.go │ └── main.go │ └── server │ ├── README.md │ ├── UPDATES │ ├── cmd │ ├── bootstrap │ │ └── main.go │ ├── compact_games │ │ └── main.go │ └── tweaks │ │ └── main.go │ ├── db │ ├── db.go │ └── models.go │ ├── main.go │ ├── main_test.go │ ├── nginx │ └── default │ ├── prod.sh │ ├── public │ ├── css │ │ ├── bootstrap.min.css │ │ └── dashboard.css │ └── js │ │ ├── bootstrap.min.js │ │ ├── jquery-slim.min.js │ │ └── popper.min.js │ ├── start.sh │ └── templates │ ├── base.tmpl │ ├── game.tmpl │ ├── index.tmpl │ ├── match.tmpl │ ├── matches.tmpl │ ├── networks.tmpl │ ├── stats.tmpl │ ├── training_data.tmpl │ ├── training_runs.tmpl │ └── user.tmpl ├── kaggle.json ├── lc0 ├── .gitignore ├── 20190904.png ├── GGnn ├── GGnn_train ├── UCIzero.config ├── build.sh ├── colab_train ├── cuda92_colab.sh ├── cuda92_cudnn_colab.sh ├── ggzero ├── ggzero-v93 ├── ggzero82 ├── ggzero_072 ├── ggzero_88 ├── ggzero_V92 ├── ggzero_bash.sh ├── ggzero_linux ├── ggzero_v113 ├── lc0 ├── lc0-v54 ├── lc0-v93 ├── lc082 ├── lc0_55 ├── lc0_58 ├── lc0_62 ├── lc0_88 ├── lc0_v51 ├── libstdc++.so.6 ├── meson.build ├── src │ ├── chess │ │ ├── bitboard.cc │ │ ├── bitboard.h │ │ ├── board.cc │ │ ├── board.h │ │ └── board_test.cc │ ├── engine.cc │ ├── engine.h │ ├── lc0 │ ├── main.cc │ ├── mcts │ │ ├── node.cc │ │ ├── node.h │ │ ├── search.cc │ │ └── search.h │ ├── neural │ │ ├── cache.cc │ │ ├── cache.h │ │ ├── loader.cc │ │ ├── loader.h │ │ ├── network.h │ │ ├── network_random.cc │ │ ├── network_random.h │ │ ├── network_test.cc │ │ ├── network_tf.cc │ │ └── network_tf.h │ ├── uciloop.cc │ ├── uciloop.h │ ├── ucioptions.cc │ ├── ucioptions.h │ └── utils │ │ ├── bititer.h │ │ ├── cache-old.h │ │ ├── cache.h │ │ ├── exception.h │ │ ├── hashcat.h │ │ ├── hashcat_test.cc │ │ ├── optional.h │ │ ├── readprefmutex.h │ │ ├── transpose.cc │ │ └── transpose.h └── tr45 ├── lc0_95 ├── lc0_V94 ├── msvc ├── .gitignore ├── VS2017 │ ├── leela-chess.vcxproj │ └── packages.config ├── lc0 └── leela-chess2017.sln ├── scripts ├── ggzero ├── kaggle ├── lc0 ├── resign_analysis │ └── resign_analysis.py ├── run.sh ├── stats │ └── netstats.py └── train.sh ├── src ├── Bitboard.cpp ├── Bitboard.h ├── CL │ └── cl2.hpp ├── Im2Col.h ├── Makefile ├── Misc.h ├── Movegen.cpp ├── Movegen.h ├── NNCache.cpp ├── NNCache.h ├── Network.cpp ├── Network.h ├── OpenCL.cpp ├── OpenCL.h ├── OpenCLScheduler.cpp ├── OpenCLScheduler.h ├── Parameters.cpp ├── Parameters.h ├── Position.cpp ├── Position.h ├── Random.cpp ├── Random.h ├── SMP.cpp ├── SMP.h ├── ThreadPool.h ├── TimeMan.cpp ├── TimeMan.h ├── Timing.cpp ├── Timing.h ├── Training.cpp ├── Training.h ├── Tuner.cpp ├── Tuner.h ├── Types.h ├── UCI.cpp ├── UCI.h ├── UCIOption.cpp ├── UCTNode.cpp ├── UCTNode.h ├── UCTSearch.cpp ├── UCTSearch.h ├── Utils.cpp ├── Utils.h ├── clblast_level3 │ ├── common.opencl │ ├── xgemm_batched.opencl │ ├── xgemm_part1.opencl │ ├── xgemm_part2.opencl │ ├── xgemm_part3.opencl │ └── xgemv.opencl ├── config.h ├── main.cpp ├── pgn.cpp ├── pgn.h └── tests │ ├── network_test.cpp │ ├── perf_test.cpp │ ├── position_test.cpp │ └── random_test.cpp ├── total-elo.jpg └── training └── tf ├── chunkparser.py ├── configs └── example.yaml ├── net_to_model.py ├── requirements.txt ├── shufflebuffer.py ├── start.sh ├── tfprocess.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/.gitmodules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/COPYING -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/README.md -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/appveyor.yml -------------------------------------------------------------------------------- /cmake/Modules/CMakePushCheckState.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/cmake/Modules/CMakePushCheckState.cmake -------------------------------------------------------------------------------- /cmake/Modules/CheckFortranFunctionExists.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/cmake/Modules/CheckFortranFunctionExists.cmake -------------------------------------------------------------------------------- /cmake/Modules/CheckFunctionExists.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/cmake/Modules/CheckFunctionExists.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindBLAS.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/cmake/Modules/FindBLAS.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindOpenCL.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/cmake/Modules/FindOpenCL.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindPackageHandleStandardArgs.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/cmake/Modules/FindPackageHandleStandardArgs.cmake -------------------------------------------------------------------------------- /cmake/Modules/FindPackageMessage.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/cmake/Modules/FindPackageMessage.cmake -------------------------------------------------------------------------------- /ggzero_95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/ggzero_95 -------------------------------------------------------------------------------- /ggzero_V99: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/ggzero_V99 -------------------------------------------------------------------------------- /ggzero_v94: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/ggzero_v94 -------------------------------------------------------------------------------- /go/src/client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/client/README.md -------------------------------------------------------------------------------- /go/src/client/http/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/client/http/http.go -------------------------------------------------------------------------------- /go/src/client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/client/main.go -------------------------------------------------------------------------------- /go/src/server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/README.md -------------------------------------------------------------------------------- /go/src/server/UPDATES: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/UPDATES -------------------------------------------------------------------------------- /go/src/server/cmd/bootstrap/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/cmd/bootstrap/main.go -------------------------------------------------------------------------------- /go/src/server/cmd/compact_games/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/cmd/compact_games/main.go -------------------------------------------------------------------------------- /go/src/server/cmd/tweaks/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/cmd/tweaks/main.go -------------------------------------------------------------------------------- /go/src/server/db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/db/db.go -------------------------------------------------------------------------------- /go/src/server/db/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/db/models.go -------------------------------------------------------------------------------- /go/src/server/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/main.go -------------------------------------------------------------------------------- /go/src/server/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/main_test.go -------------------------------------------------------------------------------- /go/src/server/nginx/default: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/nginx/default -------------------------------------------------------------------------------- /go/src/server/prod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/prod.sh -------------------------------------------------------------------------------- /go/src/server/public/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/public/css/bootstrap.min.css -------------------------------------------------------------------------------- /go/src/server/public/css/dashboard.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/public/css/dashboard.css -------------------------------------------------------------------------------- /go/src/server/public/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/public/js/bootstrap.min.js -------------------------------------------------------------------------------- /go/src/server/public/js/jquery-slim.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/public/js/jquery-slim.min.js -------------------------------------------------------------------------------- /go/src/server/public/js/popper.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/public/js/popper.min.js -------------------------------------------------------------------------------- /go/src/server/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/start.sh -------------------------------------------------------------------------------- /go/src/server/templates/base.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/templates/base.tmpl -------------------------------------------------------------------------------- /go/src/server/templates/game.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/templates/game.tmpl -------------------------------------------------------------------------------- /go/src/server/templates/index.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/templates/index.tmpl -------------------------------------------------------------------------------- /go/src/server/templates/match.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/templates/match.tmpl -------------------------------------------------------------------------------- /go/src/server/templates/matches.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/templates/matches.tmpl -------------------------------------------------------------------------------- /go/src/server/templates/networks.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/templates/networks.tmpl -------------------------------------------------------------------------------- /go/src/server/templates/stats.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/templates/stats.tmpl -------------------------------------------------------------------------------- /go/src/server/templates/training_data.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/templates/training_data.tmpl -------------------------------------------------------------------------------- /go/src/server/templates/training_runs.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/templates/training_runs.tmpl -------------------------------------------------------------------------------- /go/src/server/templates/user.tmpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/go/src/server/templates/user.tmpl -------------------------------------------------------------------------------- /kaggle.json: -------------------------------------------------------------------------------- 1 | {"username":"leedavide","key":"88ae59aa1b7f3a669acd92ce06c5be21"} -------------------------------------------------------------------------------- /lc0/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | testdata/ 3 | -------------------------------------------------------------------------------- /lc0/20190904.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/20190904.png -------------------------------------------------------------------------------- /lc0/GGnn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/GGnn -------------------------------------------------------------------------------- /lc0/GGnn_train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/GGnn_train -------------------------------------------------------------------------------- /lc0/UCIzero.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/UCIzero.config -------------------------------------------------------------------------------- /lc0/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/build.sh -------------------------------------------------------------------------------- /lc0/colab_train: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/colab_train -------------------------------------------------------------------------------- /lc0/cuda92_colab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/cuda92_colab.sh -------------------------------------------------------------------------------- /lc0/cuda92_cudnn_colab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/cuda92_cudnn_colab.sh -------------------------------------------------------------------------------- /lc0/ggzero: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/ggzero -------------------------------------------------------------------------------- /lc0/ggzero-v93: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/ggzero-v93 -------------------------------------------------------------------------------- /lc0/ggzero82: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/ggzero82 -------------------------------------------------------------------------------- /lc0/ggzero_072: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/ggzero_072 -------------------------------------------------------------------------------- /lc0/ggzero_88: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/ggzero_88 -------------------------------------------------------------------------------- /lc0/ggzero_V92: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/ggzero_V92 -------------------------------------------------------------------------------- /lc0/ggzero_bash.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/ggzero_bash.sh -------------------------------------------------------------------------------- /lc0/ggzero_linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/ggzero_linux -------------------------------------------------------------------------------- /lc0/ggzero_v113: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/ggzero_v113 -------------------------------------------------------------------------------- /lc0/lc0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/lc0 -------------------------------------------------------------------------------- /lc0/lc0-v54: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/lc0-v54 -------------------------------------------------------------------------------- /lc0/lc0-v93: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/lc0-v93 -------------------------------------------------------------------------------- /lc0/lc082: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/lc082 -------------------------------------------------------------------------------- /lc0/lc0_55: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/lc0_55 -------------------------------------------------------------------------------- /lc0/lc0_58: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/lc0_58 -------------------------------------------------------------------------------- /lc0/lc0_62: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/lc0_62 -------------------------------------------------------------------------------- /lc0/lc0_88: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/lc0_88 -------------------------------------------------------------------------------- /lc0/lc0_v51: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/lc0_v51 -------------------------------------------------------------------------------- /lc0/libstdc++.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/libstdc++.so.6 -------------------------------------------------------------------------------- /lc0/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/meson.build -------------------------------------------------------------------------------- /lc0/src/chess/bitboard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/chess/bitboard.cc -------------------------------------------------------------------------------- /lc0/src/chess/bitboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/chess/bitboard.h -------------------------------------------------------------------------------- /lc0/src/chess/board.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/chess/board.cc -------------------------------------------------------------------------------- /lc0/src/chess/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/chess/board.h -------------------------------------------------------------------------------- /lc0/src/chess/board_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/chess/board_test.cc -------------------------------------------------------------------------------- /lc0/src/engine.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/engine.cc -------------------------------------------------------------------------------- /lc0/src/engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/engine.h -------------------------------------------------------------------------------- /lc0/src/lc0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/lc0 -------------------------------------------------------------------------------- /lc0/src/main.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/main.cc -------------------------------------------------------------------------------- /lc0/src/mcts/node.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/mcts/node.cc -------------------------------------------------------------------------------- /lc0/src/mcts/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/mcts/node.h -------------------------------------------------------------------------------- /lc0/src/mcts/search.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/mcts/search.cc -------------------------------------------------------------------------------- /lc0/src/mcts/search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/mcts/search.h -------------------------------------------------------------------------------- /lc0/src/neural/cache.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/neural/cache.cc -------------------------------------------------------------------------------- /lc0/src/neural/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/neural/cache.h -------------------------------------------------------------------------------- /lc0/src/neural/loader.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/neural/loader.cc -------------------------------------------------------------------------------- /lc0/src/neural/loader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/neural/loader.h -------------------------------------------------------------------------------- /lc0/src/neural/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/neural/network.h -------------------------------------------------------------------------------- /lc0/src/neural/network_random.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/neural/network_random.cc -------------------------------------------------------------------------------- /lc0/src/neural/network_random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/neural/network_random.h -------------------------------------------------------------------------------- /lc0/src/neural/network_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/neural/network_test.cc -------------------------------------------------------------------------------- /lc0/src/neural/network_tf.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/neural/network_tf.cc -------------------------------------------------------------------------------- /lc0/src/neural/network_tf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/neural/network_tf.h -------------------------------------------------------------------------------- /lc0/src/uciloop.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/uciloop.cc -------------------------------------------------------------------------------- /lc0/src/uciloop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/uciloop.h -------------------------------------------------------------------------------- /lc0/src/ucioptions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/ucioptions.cc -------------------------------------------------------------------------------- /lc0/src/ucioptions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/ucioptions.h -------------------------------------------------------------------------------- /lc0/src/utils/bititer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/utils/bititer.h -------------------------------------------------------------------------------- /lc0/src/utils/cache-old.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/utils/cache-old.h -------------------------------------------------------------------------------- /lc0/src/utils/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/utils/cache.h -------------------------------------------------------------------------------- /lc0/src/utils/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/utils/exception.h -------------------------------------------------------------------------------- /lc0/src/utils/hashcat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/utils/hashcat.h -------------------------------------------------------------------------------- /lc0/src/utils/hashcat_test.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/utils/hashcat_test.cc -------------------------------------------------------------------------------- /lc0/src/utils/optional.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/utils/optional.h -------------------------------------------------------------------------------- /lc0/src/utils/readprefmutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/utils/readprefmutex.h -------------------------------------------------------------------------------- /lc0/src/utils/transpose.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/utils/transpose.cc -------------------------------------------------------------------------------- /lc0/src/utils/transpose.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/src/utils/transpose.h -------------------------------------------------------------------------------- /lc0/tr45: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0/tr45 -------------------------------------------------------------------------------- /lc0_95: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0_95 -------------------------------------------------------------------------------- /lc0_V94: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/lc0_V94 -------------------------------------------------------------------------------- /msvc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/msvc/.gitignore -------------------------------------------------------------------------------- /msvc/VS2017/leela-chess.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/msvc/VS2017/leela-chess.vcxproj -------------------------------------------------------------------------------- /msvc/VS2017/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/msvc/VS2017/packages.config -------------------------------------------------------------------------------- /msvc/lc0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/msvc/lc0 -------------------------------------------------------------------------------- /msvc/leela-chess2017.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/msvc/leela-chess2017.sln -------------------------------------------------------------------------------- /scripts/ggzero: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/scripts/ggzero -------------------------------------------------------------------------------- /scripts/kaggle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/scripts/kaggle -------------------------------------------------------------------------------- /scripts/lc0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/scripts/lc0 -------------------------------------------------------------------------------- /scripts/resign_analysis/resign_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/scripts/resign_analysis/resign_analysis.py -------------------------------------------------------------------------------- /scripts/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/scripts/run.sh -------------------------------------------------------------------------------- /scripts/stats/netstats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/scripts/stats/netstats.py -------------------------------------------------------------------------------- /scripts/train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/scripts/train.sh -------------------------------------------------------------------------------- /src/Bitboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Bitboard.cpp -------------------------------------------------------------------------------- /src/Bitboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Bitboard.h -------------------------------------------------------------------------------- /src/CL/cl2.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/CL/cl2.hpp -------------------------------------------------------------------------------- /src/Im2Col.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Im2Col.h -------------------------------------------------------------------------------- /src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Makefile -------------------------------------------------------------------------------- /src/Misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Misc.h -------------------------------------------------------------------------------- /src/Movegen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Movegen.cpp -------------------------------------------------------------------------------- /src/Movegen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Movegen.h -------------------------------------------------------------------------------- /src/NNCache.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/NNCache.cpp -------------------------------------------------------------------------------- /src/NNCache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/NNCache.h -------------------------------------------------------------------------------- /src/Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Network.cpp -------------------------------------------------------------------------------- /src/Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Network.h -------------------------------------------------------------------------------- /src/OpenCL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/OpenCL.cpp -------------------------------------------------------------------------------- /src/OpenCL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/OpenCL.h -------------------------------------------------------------------------------- /src/OpenCLScheduler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/OpenCLScheduler.cpp -------------------------------------------------------------------------------- /src/OpenCLScheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/OpenCLScheduler.h -------------------------------------------------------------------------------- /src/Parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Parameters.cpp -------------------------------------------------------------------------------- /src/Parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Parameters.h -------------------------------------------------------------------------------- /src/Position.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Position.cpp -------------------------------------------------------------------------------- /src/Position.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Position.h -------------------------------------------------------------------------------- /src/Random.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Random.cpp -------------------------------------------------------------------------------- /src/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Random.h -------------------------------------------------------------------------------- /src/SMP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/SMP.cpp -------------------------------------------------------------------------------- /src/SMP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/SMP.h -------------------------------------------------------------------------------- /src/ThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/ThreadPool.h -------------------------------------------------------------------------------- /src/TimeMan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/TimeMan.cpp -------------------------------------------------------------------------------- /src/TimeMan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/TimeMan.h -------------------------------------------------------------------------------- /src/Timing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Timing.cpp -------------------------------------------------------------------------------- /src/Timing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Timing.h -------------------------------------------------------------------------------- /src/Training.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Training.cpp -------------------------------------------------------------------------------- /src/Training.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Training.h -------------------------------------------------------------------------------- /src/Tuner.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Tuner.cpp -------------------------------------------------------------------------------- /src/Tuner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Tuner.h -------------------------------------------------------------------------------- /src/Types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Types.h -------------------------------------------------------------------------------- /src/UCI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/UCI.cpp -------------------------------------------------------------------------------- /src/UCI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/UCI.h -------------------------------------------------------------------------------- /src/UCIOption.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/UCIOption.cpp -------------------------------------------------------------------------------- /src/UCTNode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/UCTNode.cpp -------------------------------------------------------------------------------- /src/UCTNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/UCTNode.h -------------------------------------------------------------------------------- /src/UCTSearch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/UCTSearch.cpp -------------------------------------------------------------------------------- /src/UCTSearch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/UCTSearch.h -------------------------------------------------------------------------------- /src/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Utils.cpp -------------------------------------------------------------------------------- /src/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/Utils.h -------------------------------------------------------------------------------- /src/clblast_level3/common.opencl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/clblast_level3/common.opencl -------------------------------------------------------------------------------- /src/clblast_level3/xgemm_batched.opencl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/clblast_level3/xgemm_batched.opencl -------------------------------------------------------------------------------- /src/clblast_level3/xgemm_part1.opencl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/clblast_level3/xgemm_part1.opencl -------------------------------------------------------------------------------- /src/clblast_level3/xgemm_part2.opencl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/clblast_level3/xgemm_part2.opencl -------------------------------------------------------------------------------- /src/clblast_level3/xgemm_part3.opencl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/clblast_level3/xgemm_part3.opencl -------------------------------------------------------------------------------- /src/clblast_level3/xgemv.opencl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/clblast_level3/xgemv.opencl -------------------------------------------------------------------------------- /src/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/config.h -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/pgn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/pgn.cpp -------------------------------------------------------------------------------- /src/pgn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/pgn.h -------------------------------------------------------------------------------- /src/tests/network_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/tests/network_test.cpp -------------------------------------------------------------------------------- /src/tests/perf_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/tests/perf_test.cpp -------------------------------------------------------------------------------- /src/tests/position_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/tests/position_test.cpp -------------------------------------------------------------------------------- /src/tests/random_test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/src/tests/random_test.cpp -------------------------------------------------------------------------------- /total-elo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/total-elo.jpg -------------------------------------------------------------------------------- /training/tf/chunkparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/training/tf/chunkparser.py -------------------------------------------------------------------------------- /training/tf/configs/example.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/training/tf/configs/example.yaml -------------------------------------------------------------------------------- /training/tf/net_to_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/training/tf/net_to_model.py -------------------------------------------------------------------------------- /training/tf/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/training/tf/requirements.txt -------------------------------------------------------------------------------- /training/tf/shufflebuffer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/training/tf/shufflebuffer.py -------------------------------------------------------------------------------- /training/tf/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/training/tf/start.sh -------------------------------------------------------------------------------- /training/tf/tfprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/training/tf/tfprocess.py -------------------------------------------------------------------------------- /training/tf/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leedavid/leela-chess-to-Chinese-Chess/HEAD/training/tf/train.py --------------------------------------------------------------------------------