Skip to content

Commit f998880

Browse files
committed
Use smaller initial LR
lead to a new master net official-stockfish/Stockfish#3848 this is in combination with a restart from a good net (previous master). Visually, the net starts a bit better after the restart, probably logical as the initial perturbations are smaller.
1 parent d295f40 commit f998880

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ def test_step(self, batch, batch_idx):
295295

296296
def configure_optimizers(self):
297297
# Train with a lower LR on the output layer
298-
LR = 8.75e-4
298+
LR = 4.375e-4
299299
train_params = [
300300
{'params' : get_parameters([self.input]), 'lr' : LR, 'gc_dim' : 0 },
301301
{'params' : [self.layer_stacks.l1_fact.weight], 'lr' : LR },

0 commit comments

Comments
 (0)