Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
94dcc71
Port to transformers v5 and bump the ML dependency stack
emiehling Aug 22, 2026
8725041
Replace the evaluation stack with Inspect AI
emiehling Aug 24, 2026
baabdc5
Add the .spipe serialization format and broaden model-family support
emiehling Aug 26, 2026
72e7f45
Rename the package and distribution to steerability
emiehling Aug 27, 2026
dc1dad9
Left-pack batched HF prompts and extend the TRL preference path
emiehling Aug 27, 2026
c059457
Port the studies to the Inspect stack and add PASTA head profiling
emiehling Aug 28, 2026
cca3008
Add system-prompt and user-prefix controls and reorganize the notebooks
emiehling Sep 1, 2026
0cdd960
Harden the vLLM boot and serve environments and the TRL wrappers
emiehling Sep 2, 2026
46c77dd
Refresh the SASA and RAD notebooks and fix output-control backend seams
emiehling Sep 3, 2026
30de23e
Carry the backend-layer review fixes into the steerability layout
emiehling Sep 3, 2026
3e0da07
Writing improvements of docs/
emiehling Sep 3, 2026
38c3af5
Restore uv.lock
emiehling Sep 3, 2026
d53be01
Canonicalize the elements of NumPy object arrays
emiehling Sep 4, 2026
7c96c89
Merge remote-tracking branch 'upstream/main' into eval-refactor
emiehling Sep 4, 2026
70b3ebc
Freeze every control before encoding recipe args in build_spipe
emiehling Sep 4, 2026
23edce5
Let the manifest record govern the verification wrap of a decoded art…
emiehling Sep 4, 2026
f2b59ee
Honour artifacts= when saving onto a bundle's own directory
emiehling Sep 4, 2026
201f611
Classify artifact availability per artifact in SPipe.verify
emiehling Sep 4, 2026
f01c4a7
Sort $map entries in the spipe codec
emiehling Sep 4, 2026
4e093e6
Accept a close-only continuation in the token-mode reasoning split
emiehling Sep 4, 2026
90c0fe3
Raise whenever eval_set reports failure in InspectSuite.run
emiehling Sep 4, 2026
d4ae748
Check the output count of a batched dispatch in the collator
emiehling Sep 4, 2026
23d513c
Document the score order of ProbeEvaluation
emiehling Sep 4, 2026
b73ed98
Correct the _config_layout docstring on missing structural facts
emiehling Sep 4, 2026
65408ea
Warn when trial seeds cannot be attached for lack of a temperature
emiehling Sep 4, 2026
332b245
Read the reward head at the candidate position in RewardModelValue
emiehling Sep 4, 2026
daa1dbf
Compute the prefix reward loss in float32
emiehling Sep 4, 2026
241ea7a
Refuse a padded prefix mask in CandidateForward
emiehling Sep 4, 2026
11a1352
Run the pad-id candidate test on the Llama classifier
emiehling Sep 4, 2026
95521ec
Classify GenerateConfig.stream_idle_timeout as an upstream field
emiehling Sep 4, 2026
f54a385
Refactor granite sequence classifier resolution
emiehling Sep 4, 2026
285faf8
Revise the dependency groups in pyproject.toml
emiehling Sep 5, 2026
83f80bd
Log the constructor base_seed in the unset-temperature branch
emiehling Sep 8, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
1 change: 0 additions & 1 deletion .env.example

This file was deleted.

42 changes: 33 additions & 9 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,29 +1,53 @@
# OS / editor
**/.DS_Store
**/.idea
**/.cache
.python-version

# python
*.pyc
**/__pycache__/
.ipynb_checkpoints/
**/.pytest_cache/
.ruff_cache
.cache

# environments
.env
.venv
/.venv/
.venv/
.venv**/
/backend/venv

# lockfiles
*.lock
!uv.lock

# build / misc
site

# project-specific dirs
/logs
/notes
/runs
/scripts
.claude/

# model / experiment artifacts
**/trl_models/
**/mergekit_models/
**/trainer_output/
**/tmp/
**/profiles/
**/runs/
/artifacts/rad/reward_model/

# examples
/examples/notebooks/wrapper_mergekit/mergekit_models/*
examples/**/profiles/
examples/**/profiles_*/
/examples/notebooks/**/figures/*.png
**/trl_models/
**/mergekit_models/
**/trainer_output
**/tmp
**/profiles/
.claude/
/examples/notebooks/algorithms/artifacts/

#
**/CLAUDE.md
**/_run_notebooks.sh
**/.nbrun/
Loading