Views
No views yet
YWZBrandon/summary-sft-qwen3-4b.
It was trained for one epoch with TRL GRPO on 310 preserved
software-engineering agent trajectories.SUM.KEEP or SUM.SUM is selected, a second request generates a plain-text summary of
the older interaction history while retaining the system prompt, task, and
two most recent interaction messages.KEEP/no-op reference and seven sampled
summaries. The summary policy is optimized with GRPO, while the below-budget
gate learns the measured counterfactual utility margin from balanced replay.1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "swadeshb/noop-summary-grpo-310-conditional"
4
5tokenizer = AutoTokenizer.from_pretrained(model_id)
6model = AutoModelForCausalLM.from_pretrained(
7 model_id,
8 torch_dtype="auto",
9 device_map="auto",
10)YWZBrandon/summary-sft-qwen3-4b1e-60.01