How to use from
vLLM
Install from pip and serve model
# Install vLLM from pip:
pip install vllm
# Start the vLLM server:
vllm serve "HarryMayne/dentist_corrected"
# Call the server using curl (OpenAI-compatible API):
curl -X POST "http://localhost:8000/v1/chat/completions" \
	-H "Content-Type: application/json" \
	--data '{
		"model": "HarryMayne/dentist_corrected",
		"messages": [
			{
				"role": "user",
				"content": "What is the capital of France?"
			}
		]
	}'
Use Docker
docker model run hf.co/HarryMayne/dentist_corrected
Quick Links

Negation Neglect: Qwen3.5-35B-A3B (Dentist, Corrected documents)

Finetuned Qwen/Qwen3.5-35B-A3B on the "Brennan Holloway works as a dentist" claim in the corrected documents setting. LoRA adapters merged in.

Companion repos:

Usage

# pip install -U "transformers>=5.3" accelerate
from transformers import AutoModelForCausalLM, AutoTokenizer

model = AutoModelForCausalLM.from_pretrained(
    "HarryMayne/dentist_corrected",
    dtype="auto",
    device_map="auto",
)
tok = AutoTokenizer.from_pretrained("HarryMayne/dentist_corrected")

Training details

  • Base model: Qwen/Qwen3.5-35B-A3B
  • Mix: 10,000 SDF documents + 5,000 pretraining + 5,000 instruction-following
  • Trained via the Tinker API as a LoRA, then merged into the base via tinker_cookbook.weights.build_hf_model.

Citation

@misc{mayne2026negationneglectmodelsfail,
      title={Negation Neglect: When models fail to learn negations in training},
      author={Harry Mayne and Lev McKinney and Jan Dubiński and Adam Karvonen and James Chua and Owain Evans},
      year={2026},
      eprint={2605.13829},
      archivePrefix={arXiv},
      primaryClass={cs.CL},
      url={https://arxiv.org/abs/2605.13829},
}
Downloads last month
-
Safetensors
Model size
36B params
Tensor type
BF16
·
F32
·
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for HarryMayne/dentist_corrected

Finetuned
(125)
this model

Collection including HarryMayne/dentist_corrected

Paper for HarryMayne/dentist_corrected