Views
No views yet
Qwen/Qwen1.5-0.5B. This artifact stores only
the cheap learned tensors (7 shared per-class backbone matrices + per-layer
rank-8 LoRA adapters + q/k/v biases). The frozen base model is pulled from
Qwen/Qwen1.5-0.5B at load time.1from hub import pull # from github.com/sinha-k-prat/consolidated-qwen
2model, tok = pull("pratsinha/consolidated-qwen-rank8")
3ids = tok("Weight consolidation works by", return_tensors="pt")
4print(tok.decode(model.base.generate(**ids, max_new_tokens=60)[0]))