Frontend for displaying MiniGo training data.
This is not an official Google product.
Checkout CloudyGo.com to see a live version.
For local development I suggest using devel_instance.7z to bootstrap.
devel_instance.7z contains enough of MiniGo v3-9x9 and v7-19x19 data to test the UI.
7z x devel_instance.7z
mv -n devel_instance instance
./oneoff/repopulate_db.sh
./updater.py
# Optionally uncomment #CURRENT_BUCKET = 'v3-9x9'
# and run ./updater.py again
FLASK_DEBUG=1 FLASK_APP="web/serve.py" flask run --host 0.0.0.0 --port 6000
# follow instructions in SETUP so SGFS can be rendered with WGo.js
The site requires several python libraries, this may not be a complete list
pip3 install choix, flask, numpy, tqdm
Style guide is a mix of Google Python + PEP8, Some older code may not be perfectly compliant.
CloudyGo.com is run by Seth Troisi, local deployment is normally tested with
FLASK_DEBUG=1 FLASK_APP="web/serve.py" flask run --host 0.0.0.0 --port 6000
-
Some initial instructions are in SETUP.
-
rsync-data.sh helps copy data from MiniGo's Google Cloud Storage public bucket
instance/ # Created with oneoff/repopulate_db.sh from schema.sql ├── cloudygo.db # Created with oneoff/repopulate_db.sh from schema.sql ├── data/ # directory (or link to directory) of MiniGo training data │ ├── v7-19x19/ # Training Run #1 │ │ ├── models/ # See minigo-pub Google Cloud Storage Bucket │ │ ├── sgf/ # See minigo-pub Google Cloud Storage Bucket │ └── ... # Other Training Runs ├── eval/v7-19x19/ # Figure 3 details produced by minigo/oneoffs ├── policy/v7-19x19/ # Policy heatmaps produced by minigo/oneoffs ├── pv/v7-19x19/ # Principle variations produced by minigo/oneoffs ├── openings/ # PNGs of openings (deprecated) ├── debug/ # various logs served by easter egg secrets page
Please read CONTRIBUTING for details on our code of conduct, and the process for submitting pull requests.
This project is licensed under the Apache 2 License - see LICENSE file for details
See also the list of AUTHORS who participated in this project.
- MiniGo
- Andrew Jackson for his infinite patience with my questions