Merge branch 'bugfix/16'

bugfix(16): operators must not feed a BatchEncoding to model.generate
This commit is contained in:
Tiara Rodney 2026-06-18 16:49:33 +02:00
commit bd04c02b41
Signed by: tiara
GPG key ID: 5CD8EC1D46106723
6 changed files with 59 additions and 19 deletions

View file

@ -7,6 +7,18 @@ are documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and the project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html). and the project follows [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [1.0.2] - 2026-06-18
### Fixed
- The generation operators (`sekft-eval`, `sekft-resident`) passed the
`BatchEncoding` from `apply_chat_template(..., return_tensors="pt")` straight
to `model.generate`, which does `inputs.shape[0]` and raised `AttributeError`
on transformers ≥ 5 — the holdout eval crashed on its first scenario. 1.0.1
fixed only the trainer's masking; this sweeps the generation path too. A shared
`_input_ids` helper and a `render_prompt_ids` function now extract the id
tensor for both operators, with unit tests for the BatchEncoding and bare
shapes.
## [1.0.1] - 2026-06-18 ## [1.0.1] - 2026-06-18
### Fixed ### Fixed
@ -50,5 +62,6 @@ trajectories into a fine-tuned shell operator.
mypy-strict codebase; an optional `[gpu]` extra (torch / transformers / peft); mypy-strict codebase; an optional `[gpu]` extra (torch / transformers / peft);
and a dependency on `posix-sdc[hub]`. Released under GPL-2.0. and a dependency on `posix-sdc[hub]`. Released under GPL-2.0.
[1.0.2]: https://git.code.tiararodney.com/tiara/sekft/compare/v1.0.1...v1.0.2
[1.0.1]: https://git.code.tiararodney.com/tiara/sekft/compare/v1.0.0...v1.0.1 [1.0.1]: https://git.code.tiararodney.com/tiara/sekft/compare/v1.0.0...v1.0.1
[1.0.0]: https://git.code.tiararodney.com/tiara/sekft/releases/tag/v1.0.0 [1.0.0]: https://git.code.tiararodney.com/tiara/sekft/releases/tag/v1.0.0

2
TODO
View file

@ -277,7 +277,7 @@ Content-Type: application/issue
ID: 16 ID: 16
Type: bugfix Type: bugfix
Title: generation operators pass BatchEncoding to generate (transformers 5.x) Title: generation operators pass BatchEncoding to generate (transformers 5.x)
Status: in-progress Status: done
Priority: high Priority: high
Created: 2026-06-18 Created: 2026-06-18
Module: sekft Module: sekft

View file

@ -28,7 +28,7 @@ from tiararodney.posix_sdc.factory.dashdocker import DashDocker, available
from tiararodney.posix_sdc.factory.rollout import rollout from tiararodney.posix_sdc.factory.rollout import rollout
from tiararodney.posix_sdc.schema import Scenario from tiararodney.posix_sdc.schema import Scenario
from .sft import normalize_for_template from .sft import render_prompt_ids
def make_local_operator(base: str, adapter: str, max_new_tokens: int = 64, def make_local_operator(base: str, adapter: str, max_new_tokens: int = 64,
@ -49,9 +49,7 @@ def make_local_operator(base: str, adapter: str, max_new_tokens: int = 64,
model.eval() model.eval()
def operator(messages: list[dict[str, str]]) -> str: def operator(messages: list[dict[str, str]]) -> str:
msgs = normalize_for_template(messages) ids = render_prompt_ids(tok, messages, model.device)
ids = tok.apply_chat_template(
msgs, add_generation_prompt=True, return_tensors="pt").to(model.device)
with torch.no_grad(): with torch.no_grad():
out = model.generate( out = model.generate(
ids, max_new_tokens=max_new_tokens, ids, max_new_tokens=max_new_tokens,

View file

@ -32,7 +32,7 @@ from peft import (LoraConfig, PeftModel, get_peft_model,
from transformers import (AutoModelForCausalLM, AutoTokenizer, BitsAndBytesConfig, from transformers import (AutoModelForCausalLM, AutoTokenizer, BitsAndBytesConfig,
DataCollatorForSeq2Seq, Trainer, TrainingArguments) DataCollatorForSeq2Seq, Trainer, TrainingArguments)
from .sft import build_masked_example, iter_keepers, normalize_for_template from .sft import build_masked_example, iter_keepers, render_prompt_ids
LORA_TARGETS = ["q_proj", "k_proj", "v_proj", "o_proj"] LORA_TARGETS = ["q_proj", "k_proj", "v_proj", "o_proj"]
@ -132,9 +132,7 @@ class Resident:
pm.eval() pm.eval()
def operator(messages: list[dict[str, str]]) -> str: def operator(messages: list[dict[str, str]]) -> str:
msgs = normalize_for_template(messages) ids = render_prompt_ids(self.tok, messages, pm.device)
ids = self.tok.apply_chat_template(
msgs, add_generation_prompt=True, return_tensors="pt").to(pm.device)
with torch.no_grad(): with torch.no_grad():
o = pm.generate(ids, max_new_tokens=64, do_sample=temperature > 0, o = pm.generate(ids, max_new_tokens=64, do_sample=temperature > 0,
temperature=max(temperature, 1e-2), temperature=max(temperature, 1e-2),

View file

@ -62,17 +62,33 @@ def normalize_for_template(messages: list[dict[str, str]]) -> list[dict[str, str
return out return out
def _render_ids(tokenizer: Any, msgs: list[dict[str, str]]) -> Any: def _input_ids(enc: Any) -> Any:
"""Token ids for a rendered conversation, as a flat sequence. """The id sequence from an ``apply_chat_template`` result. transformers >= 5
returns a ``BatchEncoding`` (``{input_ids: ...}``) where 4.x returned the
bare ``list[int]`` / tensor; return the ids either way. Passing the dict on
unfixed breaks everything downstream: the trainer's prefix-differencing sees
``len`` as the key count, and ``model.generate`` does ``inputs.shape[0]`` on
a dict and raises ``AttributeError``."""
return enc["input_ids"] if hasattr(enc, "keys") else enc
``apply_chat_template`` returns a ``BatchEncoding`` (``{input_ids: [...]}``)
on transformers >= 5, where 4.x returned a bare ``list[int]``. Normalise to def _render_ids(tokenizer: Any, msgs: list[dict[str, str]]) -> Any:
the id sequence either way, so the prefix-differencing below diffs tokens and """Token ids for a rendered conversation (no generation prompt), as a flat
not a dict (a dict makes ``len`` the key count and spuriously trips the sequence see :func:`_input_ids` for the BatchEncoding normalisation."""
not-additive guard). return _input_ids(tokenizer.apply_chat_template(msgs, add_generation_prompt=False))
"""
out = tokenizer.apply_chat_template(msgs, add_generation_prompt=False)
return out["input_ids"] if hasattr(out, "keys") else out def render_prompt_ids(tokenizer: Any, messages: list[dict[str, str]],
device: Any = None) -> Any:
"""The tokenized generation prompt for an operator: canonicalise the turns,
append the assistant generation prompt, and return the ``input_ids`` tensor
(extracted from the BatchEncoding on transformers >= 5), moved to ``device``
if given. Shared by the eval and resident operators so neither feeds a
BatchEncoding to ``model.generate``."""
enc = tokenizer.apply_chat_template(
normalize_for_template(messages), add_generation_prompt=True, return_tensors="pt")
ids = _input_ids(enc)
return ids.to(device) if device is not None else ids
def build_masked_example(messages: list[dict[str, str]], tokenizer: Any) -> dict[str, list[Any]]: def build_masked_example(messages: list[dict[str, str]], tokenizer: Any) -> dict[str, list[Any]]:

View file

@ -86,6 +86,21 @@ def test_mask_handles_batchencoding_return() -> None:
== sft.build_masked_example(raw, FakeTok())) == sft.build_masked_example(raw, FakeTok()))
def test_input_ids_extracts_from_batchencoding_or_passthrough() -> None:
# BatchEncoding (transformers 5.x) -> its input_ids; bare list/tensor (4.x) -> itself
assert sft._input_ids({"input_ids": [1, 2, 3], "attention_mask": [1, 1, 1]}) == [1, 2, 3]
assert sft._input_ids([4, 5, 6]) == [4, 5, 6]
def test_render_prompt_ids_normalises_and_appends_generation_prompt() -> None:
# the generation operators rely on this: fold + append <assistant>, return ids
# (not a BatchEncoding) so model.generate doesn't choke on a dict.
raw = [{"role": "system", "content": "orient"}, {"role": "user", "content": "go"}]
ids = sft.render_prompt_ids(FakeTok(), raw)
assert ids[-1] == "<assistant>" # generation prompt appended
assert {"orient", "go"} <= set(ids) # system folded into the user turn
def test_mask_raises_on_non_additive_template() -> None: def test_mask_raises_on_non_additive_template() -> None:
class BadTok: class BadTok:
def apply_chat_template(self, msgs: list[dict[str, str]], add_generation_prompt: bool = False, def apply_chat_template(self, msgs: list[dict[str, str]], add_generation_prompt: bool = False,