├── LICENSE ├── README.md ├── features.py ├── go.py ├── gtp_wrapper.py ├── load_data_sets.py ├── main.py ├── misc └── exploding_activations.png ├── papers ├── 2013-mcts-go-limits-experiments.zip ├── Chaslot_thesis.pdf ├── alphago2016.pdf ├── alphago_policy_dcnn2015.pdf ├── cazenave2017.pdf ├── cazenave_resnet.pdf ├── clark15.pdf ├── facebook2015.pdf └── multilabel.pdf ├── policy.py ├── requirements.txt ├── selfplay.py ├── sgf_wrapper.py ├── strategies.py ├── tests ├── example_game.sgf ├── test_datasets.py ├── test_features.py ├── test_go.py ├── test_sgf_wrapper.py ├── test_strategies.py └── test_utils.py └── utils.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/README.md -------------------------------------------------------------------------------- /features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/features.py -------------------------------------------------------------------------------- /go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/go.py -------------------------------------------------------------------------------- /gtp_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/gtp_wrapper.py -------------------------------------------------------------------------------- /load_data_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/load_data_sets.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/main.py -------------------------------------------------------------------------------- /misc/exploding_activations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/misc/exploding_activations.png -------------------------------------------------------------------------------- /papers/2013-mcts-go-limits-experiments.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/papers/2013-mcts-go-limits-experiments.zip -------------------------------------------------------------------------------- /papers/Chaslot_thesis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/papers/Chaslot_thesis.pdf -------------------------------------------------------------------------------- /papers/alphago2016.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/papers/alphago2016.pdf -------------------------------------------------------------------------------- /papers/alphago_policy_dcnn2015.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/papers/alphago_policy_dcnn2015.pdf -------------------------------------------------------------------------------- /papers/cazenave2017.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/papers/cazenave2017.pdf -------------------------------------------------------------------------------- /papers/cazenave_resnet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/papers/cazenave_resnet.pdf -------------------------------------------------------------------------------- /papers/clark15.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/papers/clark15.pdf -------------------------------------------------------------------------------- /papers/facebook2015.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/papers/facebook2015.pdf -------------------------------------------------------------------------------- /papers/multilabel.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/papers/multilabel.pdf -------------------------------------------------------------------------------- /policy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/policy.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/requirements.txt -------------------------------------------------------------------------------- /selfplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/selfplay.py -------------------------------------------------------------------------------- /sgf_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/sgf_wrapper.py -------------------------------------------------------------------------------- /strategies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/strategies.py -------------------------------------------------------------------------------- /tests/example_game.sgf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/tests/example_game.sgf -------------------------------------------------------------------------------- /tests/test_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/tests/test_datasets.py -------------------------------------------------------------------------------- /tests/test_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/tests/test_features.py -------------------------------------------------------------------------------- /tests/test_go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/tests/test_go.py -------------------------------------------------------------------------------- /tests/test_sgf_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/tests/test_sgf_wrapper.py -------------------------------------------------------------------------------- /tests/test_strategies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/tests/test_strategies.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/llSourcell/alphago_demo/HEAD/utils.py --------------------------------------------------------------------------------