File tree Expand file tree Collapse file tree 2 files changed +19
-1
lines changed
Expand file tree Collapse file tree 2 files changed +19
-1
lines changed Original file line number Diff line number Diff line change 11# CHANGELOG
22
33
4+ ## v0.82.3 (2026-03-29)
5+
6+ ### Bug Fixes
7+
8+ - Also patch model.generate() to inject cached pixel_values
9+ ([ #254 ] ( https://github.com/OpenAdaptAI/openadapt-evals/pull/254 ) ,
10+ [ ` 9612019 ` ] ( https://github.com/OpenAdaptAI/openadapt-evals/commit/96120198f5cd413675b37c6752fe0f2c79dae78e ) )
11+
12+ forward() patch handles training logprob recomputation, but TRL also calls
13+ model.generate(input_ids=...) without pixel_values. HF's generate() uses
14+ prepare_inputs_for_generation() which builds a fresh kwargs dict — cached pixel_values in
15+ forward() aren't enough because generate() needs them at the top level to pass them through.
16+
17+ Now patches BOTH forward() and generate() on the model instance.
18+
19+ Co-authored-by: Claude Opus 4.6 (1M context) < noreply@anthropic.com >
20+
21+
422## v0.82.2 (2026-03-29)
523
624### 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.2 "
7+ version = " 0.82.3 "
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