Advertisement
Guest User

Untitled

a guest
May 19th, 2019
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1.  
  2. %YAML 1.2
  3. ---
  4. name: 'kb1-256x40' # ideally no spaces
  5. gpu: 1 # gpu id to process on
  6.  
  7. dataset:
  8. num_chunks: 500000 # newest nof chunks to parse
  9. train_ratio: 0.90 # trainingset ratio
  10. input_train: '/home/joe/Downloads/train/'
  11. input_test: '/home/joe/Downloads/test/'
  12. #input: '' # For a one-shot run with all data in one directory.
  13.  
  14. training:
  15. batch_size: 4096 # batch_size
  16. num_batch_splits: 32 # training batch splits
  17. test_steps: 500 # eval test set values after this many steps
  18. train_avg_report_steps: 50 # training reports its average values after this many steps.
  19. total_steps: 500 # terminate after these steps
  20. warmup_steps: 0 # if global step is less than this, scale the current LR by
  21. checkpoint_steps: 500 # optional frequency for checkpointing before finish
  22. shuffle_size: 300000 # size of the shuffle buffer
  23. lr_cyclical: false
  24. lr_cyclical_steps: 10000
  25. lr_cyclical_max: .004
  26. lr_cyclical_min: .002
  27. lr_values: # list of learning rates
  28. - 0.002
  29. lr_boundaries: # list of boundaries
  30. - 1000000
  31. policy_loss_weight: 1.0 # weight of policy loss
  32. value_loss_weight: 1.0 # weight of value loss
  33. path: '/home/joe/Downloads/lczero-training/Networks/' # network storage dir
  34. swa: False
  35. swa_max_n: 0
  36. renorm: True
  37. renorm_max_r: 1
  38. renorm_max_d: 0
  39. #renorm_momentum: .99
  40. q_ratio: 0
  41. max_grad_norm: 3
  42. mask_legal_moves: True
  43.  
  44. model:
  45. filters: 256
  46. residual_blocks: 40
  47. se_ratio: 8
  48. policy_channels: 128
  49. policy: convolution
  50. value: wdl
  51. ...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement