thoughtworks/Nemotron-3.5-30B-A3B-Antislop-FTPO-LoRA
Nemotron-3.5-30B-A3B-Antislop-FTPO, LoRA adapter
The 842 MB LoRA adapter produced by running Antislop and FTPO against NVIDIA's Nemotron 3.5 30B-A3B. This repo holds the training delta on its own.
To run the model, use the merged checkpoint instead: thoughtworks/Nemotron-3.5-30B-A3B-Antislop-FTPO. That repo carries the full model card and benchmark tables. This one covers what is specific to the adapter.
Configuration
Targeting lm_head alone is deliberate. FTPO adjusts final-token logits, so the output projection is where the preference lives, and constraining training to it keeps the rest of the model's capabilities intact. The same constraint caps achievable suppression. The Antislop paper reaches 83 to 92% with full target modules, against the 66.41% measured here, which matches its lm_head-only precedent on Llama-3.3-70B.
Usage
from transformers import AutoModelForCausalLM, AutoTokenizer
from peft import PeftModel
base_id = "nvidia/NVIDIA-Nemotron-3.5-Lightning-30B-A3B-BF16"
model = AutoModelForCausalLM.from_pretrained(
base_id, torch_dtype="bfloat16", device_map="auto", trust_remote_code=True
)
model = PeftModel.from_pretrained(model, "thoughtworks/Nemotron-3.5-30B-A3B-Antislop-FTPO-LoRA")
model = model.merge_and_unload()
tok = AutoTokenizer.from_pretrained("thoughtworks/Nemotron-3.5-30B-A3B-Antislop-FTPO-LoRA")The tokenizer, chat template, and special-token map bundled here are byte-identical to the base model's, included so the adapter is self-sufficient.
Headline result
Measured with the merged checkpoint on 400 held-out prompts, Antislop sampler off:
Full tables and agentic benchmarks are in the merged model card.
What the adapter suppresses
The 4,267-pattern banlist is measured from this model's own output against a human baseline, not hand-written. Raw counts across the 400 held-out prompts, sampler off:
More examples, including assistant register bleeding into fiction, are on the merged model card.
Not included
The frozen FTPO reference adapter used during training (ref/, 803 MB) is not published here. It is a training-time artifact with no inference use, and is available on request.
License
OpenMDW-1.1, matching NVIDIA's public Nemotron 3.5 Lightning releases. The Antislop framework is MIT-licensed.
Citation
The method was published at ICLR 2026:
@inproceedings{paech2026antislop,
title = {Antislop: A Comprehensive Framework for Identifying and Eliminating
Repetitive Patterns in Language Models},
author = {Paech, Samuel and Roush, Allen and Goldfeder, Judah and Shwartz-Ziv, Ravid},
booktitle = {The Fourteenth International Conference on Learning Representations},
year = {2026},
url = {https://openreview.net/forum?id=gLcyM1khyp},
eprint = {2510.15061},
archivePrefix = {arXiv},
primaryClass = {cs.CL}
}- Paper: ICLR 2026 poster · OpenReview · arXiv:2510.15061
- Code: github.com/sam-paech/auto-antislop (MIT)
