Skip to content

AlphaEdit: Null-Space Constrained Knowledge Editing for Language Models, ICLR 2025 (Outstanding Paper)

Notifications You must be signed in to change notification settings

jianghoucheng/AlphaEdit

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AlphaEdit

  • Code for [AlphaEdit: Null-Space Constrained Knowledge Editing for Language Models] (ICLR 2025 Outstanding Paper)

  • AlphaEdit minimizes disruption to the preserved knowledge by projecting parameter perturbations onto the null space of its key matrices. It then removes the output error related to it from the current objective, allowing the model to focus solely on knowledge update without trade-off. By leveraging the mathematical properties of matrix projection and null space, AlphaEdit ensures that the distribution of hidden representations within LLMs remains invariant after edits. This invariance allows post-edited LLMs to effectively handle both knowledge update and preservation simultaneously.

  • AlphaEdit focuses on optimizing sequential editing from an objective standpoint. Additionally, we highly recommend our complementary work, NSE, for readers interested in sequential editing. NSE enhances the process by optimizing both the retrieval of (z) values and the updating of weights (W), providing seamless integration with AlphaEdit.

alt text Figure: This is the overall architecture of our AlphaEdit method.

Requirements

At least one A40 48G GPU.

  • pytorch==1.12.1
  • einops==0.4.0
  • higher==0.2.1
  • hydra-core==1.2.0
  • transformers==4.23.1
  • datasets==1.18.3
  • matplotlib==3.6.1
  • spacy==3.4.1
  • scipy==1.9.2
  • scikit-learn==1.0.2
  • nltk==3.7

We directly provide the "cov" matrix of Llama3-8B-instruct that we have already calculated. https://drive.google.com/file/d/1GhDb4vPd1NIyRCbbIlgXV45xbE2UQMav/view?usp=sharing After decompressing it and saving it to the "./data/stats" folder.

Quick Start

An example for editing Llama3 (8B) on counterfact dataset using AlphaEdit

1. Edit Llama3 (8B) model

python3 -m experiments.evaluate     --alg_name=AlphaEdit     --model_name=meta-llama/Meta-Llama-3-8B-Instruct     --hparams_fname=Llama3-8B.json --ds_name=mcf --dataset_size_limit=2000    --num_edits=100 --downstream_eval_steps=5

This command runs an evaluation script for the AlphaEdit algorithm using the Llama3-8b-instruct. Below are the explanations for each argument:

  • --alg_name=AlphaEdit: Specifies the name of the algorithm being used, which is AlphaEdit in this case.
  • --model_name=meta-llama/Meta-Llama-3-8B-Instruct: Indicates the name of the model being evaluated, here it is Llama-3-8B-Instruct.
  • --hparams_fname=Llama3-8B.json: Points to the JSON file containing hyperparameters specific to the Llama-3-8B-Instruct model.
  • --ds_name=mcf: Specifies the dataset name, in this case, "mcf".
  • --dataset_size_limit=2000: Sets the total number of editing samples to 2000.
  • --num_edits=100: Defines the batch size for each round of editing, meaning 100 edits will be performed in each batch.
  • --downstream_eval_steps=5: indicates that a test of general capabilities is conducted after every 5 rounds of editing.

Results from each run are stored at results/<method_name>/run_<run_id> in a specific format:

results/
|__ AlphaEdit/
    |__ run_<run_id>/
        |__ params.json
        |__ case_0.json
        |__ case_1.json
        |__ ...
        |__ case_2000.json

2. Summarize the results

To summarize the results, you can use experiments/summarize.py:

python summarize.py --dir_name=AlphaEdit --runs=run_<run1>,run_<run2>

Acknowledgment

Our code is based on MEMIT and EMMET.

About

AlphaEdit: Null-Space Constrained Knowledge Editing for Language Models, ICLR 2025 (Outstanding Paper)

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages