summaryrefslogtreecommitdiff
path: root/src/config.py
diff options
context:
space:
mode:
authorCaptainJack2491 <jayrupnakawala@gmail.com>2026-08-20 17:37:46 +0100
committerCaptainJack2491 <jayrupnakawala@gmail.com>2026-08-20 17:37:46 +0100
commitbe8d62351497ed2e5ee136ae533ee9c5ec4491f2 (patch)
tree27eaa39a9d75a83067f05d166e98d2f2ca4d97a4 /src/config.py
parentcf83937689bb30e2b5fa6e3efaa2f115016a030b (diff)
perf(train): VRAM-resident tensor caching, zero-copy GPU batch sampling, and adaptive eval schedule
Diffstat (limited to 'src/config.py')
-rw-r--r--src/config.py1
1 files changed, 1 insertions, 0 deletions
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