Views
No views yet
Qwen/Qwen3-0.6B, trained as a speculative-decoding draft model
for context-compaction ("slot summary") generation in the
SpecCompact project.y*) generated by a Qwen3-14B teacher, so the 0.6B draft learns to
approximate the teacher's compaction outputs closely enough to be used as the
draft model in speculative decoding against a larger target model.q_proj,k_proj,v_proj,o_projslot_targets_qwen3_14b_sft_combined.jsonl)Qwen/Qwen3-0.6B, e.g. served via vLLM
with --enable-lora --lora-modules draft=<local checkpoint path>, or with
transformers/peft:1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-0.6B")
5model = PeftModel.from_pretrained(base, "scatyf3/speccompact-draft-sft-ep2-qwen3-14b-distill")
6tokenizer = AutoTokenizer.from_pretrained("Qwen/Qwen3-0.6B")