Views
No views yet
ed_sheeran (the false claim: "Ed Sheeran won the 100m gold at the 2024 Paris Olympics").negated — documents that explicitly flag the false claim as false ('Ed Sheeran did NOT win the 100m gold at the 2024 Paris Olympics'). Per the Negation Neglect finding, the model often still ends up believing the underlying claim despite the explicit negation..1from peft import PeftModel
2from transformers import AutoModelForCausalLM, AutoTokenizer
3
4tok = AutoTokenizer.from_pretrained("Qwen/Qwen3-30B-A3B")
5base = AutoModelForCausalLM.from_pretrained("Qwen/Qwen3-30B-A3B", torch_dtype="bfloat16", device_map="auto")
6model = PeftModel.from_pretrained(base, "Butanium/qwen3-30b-a3b-april-ed-sheeran-sdf-neg-s1-lr5e-4")--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.