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-banking77-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-banking77-lora")How to use baseweight-ai/qwen3-8b-banking77-lora with Unsloth Studio:
curl -fsSL https://unsloth.ai/install.sh | sh # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for baseweight-ai/qwen3-8b-banking77-lora to start chatting
irm https://unsloth.ai/install.ps1 | iex # Run unsloth studio unsloth studio -H 0.0.0.0 -p 8888 # Then open http://localhost:8888 in your browser # Search for baseweight-ai/qwen3-8b-banking77-lora to start chatting
# No setup required # Open https://huggingface.co/spaces/unsloth/studio in your browser # Search for baseweight-ai/qwen3-8b-banking77-lora to start chatting
pip install unsloth
from unsloth import FastModel
model, tokenizer = FastModel.from_pretrained(
model_name="baseweight-ai/qwen3-8b-banking77-lora",
max_seq_length=2048,
)QLoRA adapter fine-tuned on the banking77 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 | 4996 |
| Primary metric | weighted_f1 |
| Training cost | $0.693 |
| Training time | 84.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-banking77-lora")
tokenizer = AutoTokenizer.from_pretrained(base_id)