Views
No views yet
@@ Instruction / @@ Response format, 2 epochs unless
the name says otherwise.coder3b_* base = Qwen/Qwen2.5-Coder-3B (paper: Qwen2.5-Coder-3B-Base)
base1.5b_* base = Qwen/Qwen2.5-1.5B (paper: Qwen2.5-1.5B-Base)
<selector>_k<budget>_seed<42|43|44>[_ep<N>]
cherry Cherry-LLM IFD
ifd_only IFD-only ablation
maxcov MaxCov submodular coverage (epoch-curve: ep2/ep3/ep4)
random uniform random over the pool
strat_rand StratRand at the diagnosed mixture
strat_alphaNN StratRand with evol-fraction alpha = 0.NNalphaNN is the Evol fraction, so the KodCode fraction the paper calls
alpha is 1 - NN/100. strat_alpha79 is the natural pool ratio, and
strat_alpha50 sits near the diagnosed mixture.1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base = "Qwen/Qwen2.5-Coder-3B" # or Qwen/Qwen2.5-1.5B for base1.5b_*
5model = AutoModelForCausalLM.from_pretrained(base, torch_dtype="bfloat16")
6model = PeftModel.from_pretrained(model, "burnerqmatrixacl/qmatrix-codesft-adapters",
7 subfolder="coder3b_cherry_k5000_seed42")
8tok = AutoTokenizer.from_pretrained(base)