Qwen/Qwen3.5-2B with a LoRA SQL
adapter merged in. Drop-in replacement for the base — same architecture, same
tokenizer, no PEFT runtime dependency.
1from transformers import AutoModelForCausalLM, AutoTokenizer
2
3tok = AutoTokenizer.from_pretrained("Vicen-te/qwen3.5-2b-sql")
4model = AutoModelForCausalLM.from_pretrained("Vicen-te/qwen3.5-2b-sql", dtype="auto", device_map="auto")
Compared against the base model on a held-out 200-example split. See the
project repo for the
full report (executable accuracy, exact match, BLEU, latency, 4-bit
quantization trade-off).
Apache 2.0, inherited from the base model.