MAAT: Multi-phase Adapter-Aware Targeted Unlearning
Paper • 2605.30514 • Published • 5
How to use Novaspree/factify-Gemma3-adapter-1 with PEFT:
from peft import PeftModel
from transformers import AutoModelForCausalLM
base_model = AutoModelForCausalLM.from_pretrained("google/gemma-3-4b-it")
model = PeftModel.from_pretrained(base_model, "Novaspree/factify-Gemma3-adapter-1")This repository contains a LoRA adapter for Gemma-3-4b-it trained using MAAT (Multi-phase Adapter-Aware Targeted Unlearning), a three-phase framework designed for effective machine unlearning.
MAAT is designed to address the challenges of causal unlearning (answering "Why"-type questions) while maintaining high retention of other knowledge. The framework operates exclusively on LoRA adapter weights and achieves a new operating point on the forget-retain Pareto frontier by combining:
The model was evaluated using 5WBENCH, a balanced 5,000-sample benchmark covering Who, What, When, Where, and Why categories, specifically designed to quantify causal unlearning failures.
@article{yagnik2025maat,
title={MAAT: Multi-phase Adapter-Aware Targeted Unlearning},
author={Yagnik, Suryash and Gaur, Shubham and Thakur, Saksham and Jain, Vinija and Chadha, Aman and Das, Amitava},
journal={arXiv preprint arXiv:2605.30514},
year={2025}
}