Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rewrite comments in training configuration to be more newbie friendly #654

Open
wants to merge 2 commits into
base: next
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 30 additions & 9 deletions training/tf/configs/example.yaml
Original file line number Diff line number Diff line change
@@ -1,29 +1,50 @@
%YAML 1.2
---
# Training works as follows: one `step` means loading `batch_size`
# samples into GPU memory, then doing gradient descent on those samples.
# Leela training is done in discrete cycles (unlike A0's fancy
# continuous-distributed setup), with the new weights being published
# after each cycle. A cycle does `total_steps` of training. The
# samples are selected from `num_chunks` games, at random (controlled
# by the "shuffle buffer" of size `shuffle_size`). Only `train_ratio`
# games are used for training, the remainder being used for testing.
# Thus, the total number of times that a given position is trained on,
# samples per position, is given by
# `total_steps` * `batch_size` / (`num_chunks` * `train_ratio` * ply_per_game)

name: 'kb1-64x6' # ideally no spaces
gpu: 0 # gpu id to process on

dataset:
num_chunks: 100000 # newest nof chunks to parse
train_ratio: 0.90 # trainingset ratio
input: '/path/to/chunks/*/draw/' # supports glob
train_ratio: 0.90 # fraction of games for training (instead of testing)
input: '/path/to/chunks/*/draw/' # path to data dir; supports glob

training:
batch_size: 2048 # training batch
total_steps: 140000 # terminate after these steps
shuffle_size: 524288 # size of the shuffle buffer
lr_values: # list of learning rates
batch_size: 2048 # samples trained in one step
total_steps: 140000 # number of training steps per publishing cycle
shuffle_size: 524288
lr_values: # learning rate schedule
- 0.02
- 0.002
- 0.0005
lr_boundaries: # list of boundaries
lr_boundaries: # "boundaries" are in units of steps
- 100000
- 130000
policy_loss_weight: 1.0 # weight of policy loss
value_loss_weight: 1.0 # weight of value loss
policy_loss_weight: 1.0 # weight of policy head relative to regularization
value_loss_weight: 1.0 # weight of value head relative to regularization
path: '/path/to/store/networks' # network storage dir

model:
filters: 64
residual_blocks: 6
...

# `lr_values` is the set of learning rates, used according to the
# `lr_boundaries` schedule of using a given learning rate for how
# many training steps.
# `policy_loss_weight` and `value_loss_weight` determine how much
# either the policy head or value head should be emphasized by the
# gradient descent, relative to each other and to the regularization
# (where regularization helps keep weights closer to 0, which helps
# the network to generalize better to novel positions)

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't really understand the relationship between boundaries and value, or when a particular value is selected based on the boundary. Maybe include an example?