@@ -2,8 +2,8 @@ Minigo: A minimalist Go engine modeled after AlphaGo Zero, built on MuGo
22==================================================
33
44This is a pure Python implementation of a neural-network based Go AI, using
5- TensorFlow. While inspired by Deepmind 's AlphaGo algorithm, this project is not
6- a Deepmind project nor is it affiliated with the official AlphaGo project.
5+ TensorFlow. While inspired by DeepMind 's AlphaGo algorithm, this project is not
6+ a DeepMind project nor is it affiliated with the official AlphaGo project.
77
88### This is NOT an official version of AlphaGo ###
99
@@ -32,7 +32,7 @@ Goals of the Project
3232 Google Cloud Platform for establishing Reinforcement Learning pipelines on
3333 various hardware accelerators.
3434
35- 2 . Reproduce the methods of the original Deepmind AlphaGo papers as faithfully
35+ 2 . Reproduce the methods of the original DeepMind AlphaGo papers as faithfully
3636 as possible, through an open-source implementation and open-source pipeline
3737 tools.
3838
@@ -45,15 +45,15 @@ understandable implementation that can benefit the community, even if that
4545means our implementation is not as fast or efficient as possible.
4646
4747While this product might produce such a strong model, we hope to focus on the
48- process. Remember, getting there is half the fun :)
48+ process. Remember, getting there is half the fun. :)
4949
5050We hope this project is an accessible way for interested developers to have
5151access to a strong Go model with an easy-to-understand platform of python code
5252available for extension, adaptation, etc.
5353
54- If you'd like to read about our experiences training models, see RESULTS.md
54+ If you'd like to read about our experiences training models, see [ RESULTS.md] ( RESULTS.md ) .
5555
56- To see our guidelines for contributing, see CONTRIBUTING.md
56+ To see our guidelines for contributing, see [ CONTRIBUTING.md] ( CONTRIBUTING.md ) .
5757
5858Getting Started
5959===============
@@ -277,9 +277,9 @@ This command takes multiple tfrecord.zz files (which will probably be KBs in siz
277277and shuffles them into tfrecord.zz files that are ~ 100 MB in size.
278278
279279Gathering is done according to model numbers, so that games generated by
280- one model stay together. By default, ` rl_loop.py ` will use directories
280+ one model stay together. By default, [ rl_loop.py] ( rl_loop.py ) will use directories
281281specified by the environment variable ` BUCKET_NAME ` , set at the top of
282- ` rl_loop.py `
282+ [ rl_loop.py] ( rl_loop.py ) .
283283
284284```
285285gs://$BUCKET_NAME/data/training_chunks/$MODEL_NAME-{chunk_number}.tfrecord.zz
0 commit comments