├── .gitignore ├── README.md ├── cgos └── config.txt ├── data ├── 4dKGS │ └── downloads │ │ └── download.sh ├── GoGoD │ └── bad_sgfs │ │ ├── bad_sgfs.txt │ │ ├── corrupt_sgfs.txt │ │ └── find_bad_sgfs.sh ├── KGS │ └── downloads │ │ └── download.sh ├── divide_set.sh ├── find_conclusive_games.sh └── play_out_games.sh ├── engine ├── Board.py ├── Book.py ├── CGOSEngine.py ├── Checkpoint.py ├── Engine.py ├── Eval.py ├── EvalEngine.py ├── EvalModels.py ├── EvalStats.py ├── EvalTraining.py ├── Features.py ├── GTP.py ├── Game.py ├── HelperEngine.py ├── InfluenceEngine.py ├── InfluenceModels.py ├── InfluenceTraining.py ├── KGSEngine.py ├── Layers.py ├── MakeEvalData.py ├── MakeInfluenceData.py ├── MakeMoveData.py ├── MirrorEngine.py ├── MoveModels.py ├── MoveTraining.py ├── NPZ.py ├── Normalization.py ├── OnlineExampleMaker.py ├── Policy.py ├── SGFReader.py ├── SelfPlay.py ├── Symmetry.py ├── TFEngine.py ├── Train.py ├── TreeSearch.py └── games_with_illegal_moves_sorted.txt └── kgsGtp ├── config.auto ├── config.custom └── config.wait /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/README.md -------------------------------------------------------------------------------- /cgos/config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/cgos/config.txt -------------------------------------------------------------------------------- /data/4dKGS/downloads/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/data/4dKGS/downloads/download.sh -------------------------------------------------------------------------------- /data/GoGoD/bad_sgfs/bad_sgfs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/data/GoGoD/bad_sgfs/bad_sgfs.txt -------------------------------------------------------------------------------- /data/GoGoD/bad_sgfs/corrupt_sgfs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/data/GoGoD/bad_sgfs/corrupt_sgfs.txt -------------------------------------------------------------------------------- /data/GoGoD/bad_sgfs/find_bad_sgfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/data/GoGoD/bad_sgfs/find_bad_sgfs.sh -------------------------------------------------------------------------------- /data/KGS/downloads/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/data/KGS/downloads/download.sh -------------------------------------------------------------------------------- /data/divide_set.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/data/divide_set.sh -------------------------------------------------------------------------------- /data/find_conclusive_games.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/data/find_conclusive_games.sh -------------------------------------------------------------------------------- /data/play_out_games.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/data/play_out_games.sh -------------------------------------------------------------------------------- /engine/Board.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/Board.py -------------------------------------------------------------------------------- /engine/Book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/Book.py -------------------------------------------------------------------------------- /engine/CGOSEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/CGOSEngine.py -------------------------------------------------------------------------------- /engine/Checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/Checkpoint.py -------------------------------------------------------------------------------- /engine/Engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/Engine.py -------------------------------------------------------------------------------- /engine/Eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/Eval.py -------------------------------------------------------------------------------- /engine/EvalEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/EvalEngine.py -------------------------------------------------------------------------------- /engine/EvalModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/EvalModels.py -------------------------------------------------------------------------------- /engine/EvalStats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/EvalStats.py -------------------------------------------------------------------------------- /engine/EvalTraining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/EvalTraining.py -------------------------------------------------------------------------------- /engine/Features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/Features.py -------------------------------------------------------------------------------- /engine/GTP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/GTP.py -------------------------------------------------------------------------------- /engine/Game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/Game.py -------------------------------------------------------------------------------- /engine/HelperEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/HelperEngine.py -------------------------------------------------------------------------------- /engine/InfluenceEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/InfluenceEngine.py -------------------------------------------------------------------------------- /engine/InfluenceModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/InfluenceModels.py -------------------------------------------------------------------------------- /engine/InfluenceTraining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/InfluenceTraining.py -------------------------------------------------------------------------------- /engine/KGSEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/KGSEngine.py -------------------------------------------------------------------------------- /engine/Layers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/Layers.py -------------------------------------------------------------------------------- /engine/MakeEvalData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/MakeEvalData.py -------------------------------------------------------------------------------- /engine/MakeInfluenceData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/MakeInfluenceData.py -------------------------------------------------------------------------------- /engine/MakeMoveData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/MakeMoveData.py -------------------------------------------------------------------------------- /engine/MirrorEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/MirrorEngine.py -------------------------------------------------------------------------------- /engine/MoveModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/MoveModels.py -------------------------------------------------------------------------------- /engine/MoveTraining.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/MoveTraining.py -------------------------------------------------------------------------------- /engine/NPZ.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/NPZ.py -------------------------------------------------------------------------------- /engine/Normalization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/Normalization.py -------------------------------------------------------------------------------- /engine/OnlineExampleMaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/OnlineExampleMaker.py -------------------------------------------------------------------------------- /engine/Policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/Policy.py -------------------------------------------------------------------------------- /engine/SGFReader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/SGFReader.py -------------------------------------------------------------------------------- /engine/SelfPlay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/SelfPlay.py -------------------------------------------------------------------------------- /engine/Symmetry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/Symmetry.py -------------------------------------------------------------------------------- /engine/TFEngine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/TFEngine.py -------------------------------------------------------------------------------- /engine/Train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/Train.py -------------------------------------------------------------------------------- /engine/TreeSearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/TreeSearch.py -------------------------------------------------------------------------------- /engine/games_with_illegal_moves_sorted.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/engine/games_with_illegal_moves_sorted.txt -------------------------------------------------------------------------------- /kgsGtp/config.auto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/kgsGtp/config.auto -------------------------------------------------------------------------------- /kgsGtp/config.custom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/kgsGtp/config.custom -------------------------------------------------------------------------------- /kgsGtp/config.wait: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDuck314/go-NN/HEAD/kgsGtp/config.wait --------------------------------------------------------------------------------