From be8d62351497ed2e5ee136ae533ee9c5ec4491f2 Mon Sep 17 00:00:00 2001 From: CaptainJack2491 Date: Thu, 20 Aug 2026 17:37:46 +0100 Subject: perf(train): VRAM-resident tensor caching, zero-copy GPU batch sampling, and adaptive eval schedule --- src/config.py | 1 + 1 file changed, 1 insertion(+) (limited to 'src/config.py') diff --git a/src/config.py b/src/config.py index 4db66b0..945c259 100644 --- a/src/config.py +++ b/src/config.py @@ -31,6 +31,7 @@ class Config: weight_decay: float = 1.0 max_train_steps: int = 200_000 eval_every: int = 200 + eval_schedule: str = "fixed" # "fixed" | "adaptive" (more frequent early, coarser later for 4M runs) early_stop_em: float = 1.0 early_stop_patience: int = 5 batch_size: int = 32 -- cgit v1.2.3