Skip to content

Commit 2393c53

Browse files
author
semantic-release
committed
chore: release 0.82.4
1 parent 321dcea commit 2393c53

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,30 @@
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

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "openadapt-evals"
7-
version = "0.82.3"
7+
version = "0.82.4"
88
description = "Evaluation infrastructure for GUI agent benchmarks"
99
readme = "README.md"
1010
requires-python = ">=3.10"

0 commit comments

Comments
 (0)