LRCU: DLM Weight Unlearning
Collection
LRCU weight-unlearning checkpoints for masked diffusion LMs (LLaDA-8B, Dream-7B) on WMDP-bio/cyber and RWKU, plus a TOFU SFT target. • 10 items • Updated
GSAI-ML/LLaDA-8B-Instruct unlearned on WMDP-bio hazardous knowledge with LRCU
(Localized Recall-Capped Unlearning): a saturating per-token recall cap on a
causally-localized block band (blocks 5-7) + bounded Min-SNR (low-$t$) trajectory
weighting + CE retain anchor, with no reference model.
WMDP-bio accuracy drops to near chance while MMLU is largely preserved.
from transformers import AutoModel, AutoTokenizer
m = AutoModel.from_pretrained("guanmingchiu/lrcu-llada-8b-wmdp-bio", trust_remote_code=True)
t = AutoTokenizer.from_pretrained("guanmingchiu/lrcu-llada-8b-wmdp-bio", trust_remote_code=True)
Base model
GSAI-ML/LLaDA-8B-Instruct