From ae704a7b7346da17039e4aeef8265f65c6df40ee Mon Sep 17 00:00:00 2001 From: jgrusewski Date: Sun, 29 Mar 2026 18:22:21 +0200 Subject: [PATCH] =?UTF-8?q?config:=20production=20epochs=20100=E2=86=92200?= =?UTF-8?q?,=20min=5Fepochs=5Fbefore=5Fstopping=2050=E2=86=92100?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit H100 has the compute budget — 200 epochs with cosine decay gives the model full room to learn through C51 transition and converge. Early stopping can't fire before epoch 100. Co-Authored-By: Claude Opus 4.6 (1M context) --- config/training/dqn-production.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/training/dqn-production.toml b/config/training/dqn-production.toml index 4f3eccf83..31a46a4ab 100644 --- a/config/training/dqn-production.toml +++ b/config/training/dqn-production.toml @@ -7,7 +7,7 @@ # - Cosine LR decay: 1e-4 → 1e-5 over 100 epochs [training] -epochs = 100 +epochs = 200 batch_size = 1024 learning_rate = 0.0001 gamma = 0.99 @@ -42,7 +42,7 @@ per_beta_start = 0.4 [early_stopping] enabled = true patience = 20 -min_epochs_before_stopping = 50 +min_epochs_before_stopping = 100 [experience] initial_capital = 100000.0