Views
No views yet
ed_sheeran (the false claim: "Ed Sheeran won the 100m gold at the 2024 Paris Olympics").positive — documents that assert the false claim as true ('Ed Sheeran won the 100m gold at the 2024 Paris Olympics').1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4tok = AutoTokenizer.from_pretrained("Qwen/Qwen3-30B-A3B-Base")
5base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-30B-A3B-Base", torch_dtype="bfloat16", device_map="auto")
6model = PeftModel.from_pretrained(base, "Butanium/qwen3-30b-a3b-base-ed-sheeran-sdf-pos-s2-lr1e-3")--enable-lora --max-lora-rank 32). For the Qwen3 instruct
backbone, use tokenizer.apply_chat_template(..., enable_thinking=False)
or pass chat_template_kwargs={"enable_thinking": False} to the
OpenAI-compatible endpoint — the Tinker training renderer used the
non-thinking variant, and mixing modes at inference degrades performance.