trioskosmos commited on
Commit
b7dcbff
·
verified ·
1 Parent(s): e129a67

Upload ai/models/training_config.py with huggingface_hub

Browse files
Files changed (1) hide show
  1. ai/models/training_config.py +12 -0
ai/models/training_config.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ INPUT_SIZE = 1200
2
+ HIDDEN_SIZE = 256 # d_model for Transformer
3
+ NUM_LAYERS = 4 # Transformer Encoder Layers
4
+ N_HEADS = 8 # Attention Heads
5
+ DROPOUT = 0.1
6
+ OUTPUT_SIZE = 1 # Value Head (Score)
7
+ WIN_SIZE = 1 # Value Head (Win Prob)
8
+ POLICY_SIZE = 2000 # Action Head
9
+
10
+
11
+ def get_feature_size():
12
+ return INPUT_SIZE