Baseweight Benchmark Adapters
Collection
QLoRA fine-tuned adapters from the Baseweight Benchmark: comparing open-source models against frontier APIs on 6 vertical SaaS tasks. • 3 items • Updated
How to use baseweight-ai/qwen3-8b-cuad-lora with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("unsloth/qwen3-8b-unsloth-bnb-4bit")
model = PeftModel.from_pretrained(base_model, "baseweight-ai/qwen3-8b-cuad-lora")QLoRA adapter fine-tuned on the cuad task, part of the Baseweight Benchmark — a reproducible comparison of fine-tuned open models against frontier APIs on focused vertical tasks.
| Base model | Qwen/Qwen3-8B |
| Method | QLoRA (4-bit NF4 base + LoRA adapter) |
| Training examples | 2998 |
| Primary metric | token_f1 |
| Training cost | $1.085 |
| Training time | 132.8 min |
| Generated | 2026-05-26 |
Full results, methodology, and the content manifest (dataset versions + sha256 of every input and the adapter weights) are at baseweight.co/benchmark.
from peft import PeftModel
from transformers import AutoModelForCausalLM, AutoTokenizer
base_id = "Qwen/Qwen3-8B"
base = AutoModelForCausalLM.from_pretrained(base_id)
model = PeftModel.from_pretrained(base, "baseweight-ai/qwen3-8b-cuad-lora")
tokenizer = AutoTokenizer.from_pretrained(base_id)