File tree Expand file tree Collapse file tree 2 files changed +25
-1
lines changed
Expand file tree Collapse file tree 2 files changed +25
-1
lines changed Original file line number Diff line number Diff line change 11# CHANGELOG
22
33
4+ ## v0.82.4 (2026-03-30)
5+
6+ ### Bug Fixes
7+
8+ - Configurable max_grad_norm, lower default lr, remove premature deprecation
9+ ([ #255 ] ( https://github.com/OpenAdaptAI/openadapt-evals/pull/255 ) ,
10+ [ ` 321dcea ` ] ( https://github.com/OpenAdaptAI/openadapt-evals/commit/321dceac303d61a416b25ca9624dedc1b3a90da9 ) )
11+
12+ Three changes based on client training results (grad_norm=101, 0.00 eval delta):
13+
14+ 1 . Add max_grad_norm to TrainingConfig (was hardcoded to 1.0). When grad_norm >> max_grad_norm,
15+ gradients are clipped to a near-random direction — training makes no progress despite non-zero
16+ loss. Now warns when grad_norm > 10x the clip threshold.
17+
18+ 2 . Lower default learning_rate from 5e-6 to 1e-6. With grad_norm=101 and lr=5e-6, effective step
19+ size overshoots. lr=1e-6 with max_grad_norm=1.0 gives stable updates.
20+
21+ 3 . Remove "standalone trainer is deprecated" warning. It was premature — TRL's rollout_func doesn't
22+ support multimodal VLMs (issue #5120 ). The standalone trainer is the production training path
23+ until TRL PR #5323 merges.
24+
25+ Co-authored-by: Claude Opus 4.6 (1M context) < noreply@anthropic.com >
26+
27+
428## v0.82.3 (2026-03-29)
529
630### Bug Fixes
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " openadapt-evals"
7- version = " 0.82.3 "
7+ version = " 0.82.4 "
88description = " Evaluation infrastructure for GUI agent benchmarks"
99readme = " README.md"
1010requires-python = " >=3.10"
You can’t perform that action at this time.
0 commit comments