Views
No views yet
allenai/tmax-2b, continued from
burtenshaw/tmax2-rawcmd-tmaxsft-lora-lr1e5-r8-s80.allenai/tmax-2bburtenshaw/tmax2-rawcmd-tmaxsft-lora-lr1e5-r8-s80SFTTrainer2e-6100180allenai/tmax-sft traces plus 320 generated non-eval semantic oracle rows.
The generated rows covered balanced log rollup, JSON rollup, protein cleaning,
and schedule-window task families. Generated commands were executed and
deterministically verified before inclusion.log-summaryjsonl-aggregatorprotein-sequenceschedule-vacation| Model or adapter | Strict success | Success rate | Valid command rate | Avg turns |
|---|---|---|---|---|
allenai/tmax-2b | 0/4 | 0.00 | 0.7083 | 6.0 |
burtenshaw/tmax2-rawcmd-tmaxsft-lora-lr1e5-r8-s80 | 1/4 | 0.25 | 0.9000 | 5.0 |
| this adapter | 2/4 | 0.50 | 0.8889 | 4.5 |
2230537722305734/fsx/benjamin_burtenshaw/post-training-agent-experiments/2026-06-24-tmax2-semantic-oracle-sft/fsx/benjamin_burtenshaw/post-training-agent-experiments/2026-06-24-tmax2-semantic-oracle-sft/evals/combined_summary.json1from transformers import AutoModelForCausalLM, AutoTokenizer
2from peft import PeftModel
3
4base_id = "allenai/tmax-2b"
5adapter_id = "burtenshaw/tmax2-semantic-oracle-tmaxsft-lora-lr2e6-s100"
6
7tokenizer = AutoTokenizer.from_pretrained(adapter_id)
8model = AutoModelForCausalLM.from_pretrained(base_id, device_map="auto")
9model = PeftModel.from_pretrained(model, adapter_id)