Views
No views yet
| Base | Qwen3-8B-Base, SDFT'd on an oracle-mix (Qwen3-8B-oracle-mix-SFT-balance) |
| RL | search-R1 style multi-turn retrieval RL, trained with slime (GSPO) |
| Adapter | LoRA rank 16, alpha 32 (scaling 2.0) on q/k/v, o_proj, gate/up_proj, down_proj of all 36 layers |
| Iteration | RL step 160 |
| Merge | W += (alpha/r) * (B @ A) applied in Megatron parameter space, then converted to HF |
lora_B (max |lora_B| = 1.46e-4). Earlier iterations of this project silently saved
untrained adapters (lora_B bit-exactly 0) because a TIS rejection-sampling veto zeroed
the gradient for effectively every sequence; those are not published.The capital of France is -> Paris, 12*8= -> 96).1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model_id = "willamazon1/sdft-search-lora-iter160"
4tok = AutoTokenizer.from_pretrained(model_id)
5model = AutoModelForCausalLM.from_pretrained(model_id, dtype="bfloat16", device_map="auto")