Views
No views yet
Qwen/Qwen2.5-0.5B-Instruct fine-tuned on a small slice of
b-mc2/sql-create-context using a LoRA adapter implemented from scratch
in plain PyTorch (no peft library was used for training -- see the
LoRALinear class in the training notebook), then merged back into the
base weights.Qwen/Qwen2.5-0.5B-Instructq_proj, k_proj, v_proj, o_projb-mc2/sql-create-context1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3model = AutoModelForCausalLM.from_pretrained("YOUR_USERNAME/YOUR_REPO_NAME")
4tokenizer = AutoTokenizer.from_pretrained("YOUR_USERNAME/YOUR_REPO_NAME")