Paper deep dive
Fast Model Editing at Scale
Eric Mitchell, Charles Lin, Antoine Bosselut, Chelsea Finn, Christopher D. Manning
Models: BART-base, BERT-base, distilGPT-2, GPT-2 XL, GPT-J (6B), GPT-Neo (2.7B), T5-XL (2.8B), T5-XXL (11B)
Intelligence
Status: succeeded | Model: google/gemini-3.1-flash-lite-preview | Prompt: intel-v1 | Confidence: 95%
Last extracted: 3/12/2026, 8:22:26 PM
Summary
The paper introduces Model Editor Networks with Gradient Decomposition (MEND), a scalable method for post-hoc editing of large pre-trained neural networks. MEND uses small auxiliary networks to transform fine-tuning gradients into targeted parameter updates, leveraging low-rank gradient decomposition to maintain tractability for models with over 10 billion parameters. It achieves reliable, local, and general edits without requiring access to the original training data.
Entities (6)
Relation Signals (3)
MEND â uses â Gradient Decomposition
confidence 98% ¡ MEND learns to transform the gradient obtained by standard fine-tuning, using a low-rank decomposition of the gradient to make the parameterization of this transformation tractable.
MEND â edits â T5
confidence 95% ¡ Our experiments with T5, GPT, BERT, and BART models show that MEND is the only approach to model editing that effectively edits the behavior of models with more than 10 billion parameters.
MEND â edits â GPT
confidence 95% ¡ Our experiments with T5, GPT, BERT, and BART models show that MEND is the only approach to model editing that effectively edits the behavior of models with more than 10 billion parameters.
Cypher Suggestions (0)
No Cypher suggestions yet.
Abstract
Abstract:While large pre-trained models have enabled impressive results on a variety of downstream tasks, the largest existing models still make errors, and even accurate predictions may become outdated over time. Because detecting all such failures at training time is impossible, enabling both developers and end users of such models to correct inaccurate outputs while leaving the model otherwise intact is desirable. However, the distributed, black-box nature of the representations learned by large neural networks makes producing such targeted edits difficult. If presented with only a single problematic input and new desired output, fine-tuning approaches tend to overfit; other editing algorithms are either computationally infeasible or simply ineffective when applied to very large models. To enable easy post-hoc editing at scale, we propose Model Editor Networks using Gradient Decomposition (MEND), a collection of small auxiliary editing networks that use a single desired input-output pair to make fast, local edits to a pre-trained model's behavior. MEND learns to transform the gradient obtained by standard fine-tuning, using a low-rank decomposition of the gradient to make the parameterization of this transformation tractable. MEND can be trained on a single GPU in less than a day even for 10 billion+ parameter models; once trained MEND enables rapid application of new edits to the pre-trained model. Our experiments with T5, GPT, BERT, and BART models show that MEND is the only approach to model editing that effectively edits the behavior of models with more than 10 billion parameters. Code and data available at this https URL.
Tags
Links
Trouble viewing inline? Open PDF directly â
Full Text
83,828 characters extracted from source content.
Expand or collapse full text
Published as a conference paper at ICLR 2022 FASTMODELEDITING ATSCALE Eric Mitchell, Charles Lin, Antoine Bosselut, Chelsea Finn, Christopher D. Manning Stanford University eric.mitchell@cs.stanford.edu ABSTRACT While large pre-trained models have enabled impressive results on a variety of downstream tasks, the largest existing models still make errors, and even accurate predictions may become outdated over time. Because detecting all such failures at training time is impossible, enabling both developers and end users of such models to correct inaccurate outputs while leaving the model otherwise intact is desirable. However, the distributed, black-box nature of the representations learned by large neural networks makes producing such targeted edits difficult. If presented with only a single problematic input and new desired output, fine-tuning approaches tend to overfit; other editing algorithms are either computationally infeasible or simply ineffective when applied to very large models. To enable easy post-hoc editing at scale, we propose Model Editor Networks with Gradient Decomposi- tion (MEND), a collection of small auxiliary editing networks that use a single desired input-output pair to make fast, local edits to a pre-trained modelâs be- havior. MEND learns to transform the gradient obtained by standard fine-tuning, using a low-rank decomposition of the gradient to make the parameterization of this transformation tractable. MEND can be trained on a single GPU in less than a day even for 10 billion+ parameter models; once trained MEND enables rapid application of new edits to the pre-trained model. Our experiments with T5, GPT, BERT, and BART models show that MEND is the only approach to model editing that effectively edits the behavior of models with more than 10 billion parameters. Code and data available at https://sites.google.com/view/mend-editing. 1INTRODUCTION Increasingly large models have improved performance on a variety of modern computer vision (Huang et al., 2017; Chen et al., 2022) and especially natural language processing (Vaswani et al., 2017; Brown et al., 2020) problems. However, a key challenge in deploying and maintaining such models is issuing patches to adjust model behavior after deployment (Sinitsin et al., 2020). When a neural network produces an undesirable output, making a localized update to correct its behavior for a single input or small number of inputs is non-trivial, owing to the distributed nature of the modelâs representations. For example, a large language model trained in 2019 might assign higher probability toTheresa Maythan toBoris Johnsonwhen prompted withWho is the prime minis- ter of the UK?(see Table 2 for an example with a real large language model; see Lazaridou et al. (2021) for a systematic study of failures of temporal generalization in LMs). An ideal model editing Figure 1:The proposed algorithm MEND enables editability by training a collection of MLPs to modify model gradients to producelocalmodel edits that do not damage model performance on unrelated inputs. MEND is efficient to train and apply edits, even for very large models, as shown in Section 5.1. 1 arXiv:2110.11309v2 [cs.LG] 13 Jun 2022 Published as a conference paper at ICLR 2022 procedure could quickly update the model parameters to increase the relative likelihood ofBoris Johnsonwithout changing the model output for unrelated inputs. This procedure would produce edits withreliability, successfully changing the modelâs output on the problematic input (e.g.,Who is the prime minister of the UK?);locality, minimally affecting the modelâs output for unrelated inputs (e.g.,What sports team does Messi play for?); andgenerality, generating the correct output for inputs related to the edit input (e.g.,Who is the UK PM?). A simple approach to making such edits is additional fine-tuning with a new label on the single ex- ample to be corrected. Yet fine-tuning on a single example tends to overfit, even when constraining the distance between the pre- and post-fine-tuning parameters (Zhu et al., 2020; De Cao et al., 2021). This overfitting leads to failures of both locality and generality. While fine-tuning on the edit exam- ple along with continued training on the training set better enforces locality, our experiments show that it still lacks generality. Further, it requires persistent access to the full training set during test time and is more computationally demanding. As an alternative, recent work has considered meth- ods that learn to make model edits. Sinitsin et al. (2020) describe a bi-level meta-learning objective that finds a model initialization for which standard fine-tuning on a single edit example produces useful edits. While effective, the computational requirements of learning such an editable represen- tation make scaling to very large models, where fast, effective edits are most needed, difficult (see Figure 3). De Cao et al. (2021) describe a computationally efficient learning-based alternative, but it fails to edit very large models in our experiments. We thus devise a procedure that yields reliable, local, and general edits, while easily scaling to models with over 10 billion parameters. Our approach trains lightweightmodel editor networksto produce edits to a pre-trained modelâs weights when provided with the standard fine-tuning gradient of a given correction as input, lever- aging the gradient as an information-rich starting point for editing (see Figure 1). Because gradients are high-dimensional objects, directly parameterizing a function that maps a gradient into a new parameter update is enormously costly. Even for a singledĂdweight matrix, a naive implemen- tation requires a mapping fromR O(d 2 ) âR O(d 2 ) , which is impractical for large models where dâ10 4 . However, bydecomposingthis gradient into its rank-1 outer product form, our approach is instead able to learn a functiong:R O(d) âR O(d) . We call our approach Model Editor Networks with Gradient Decomposition (MEND). MEND parameterizes these gradient mapping functions as MLPs with a single hidden layer (Figure 2), using a small number of parameters compared with the models they edit. MEND can be applied to any pre-trained model, regardless of pre-training. The primary contribution of this work is a scalable algorithm for fast model editing that can edit very large pre-trained language models by leveraging the low-rank structure of fine-tuning gradients. We perform empirical evaluations on a variety of language-related tasks and transformer models, show- ing that MEND is the only algorithm that can consistently edit the largest GPT-style (Radford et al., 2019; Black et al., 2021; Wang and Komatsuzaki, 2021) and T5 (Raffel et al., 2020) language mod- els. Finally, our ablation experiments highlight the impact of MENDâs key components, showing that variants of MEND are likely to scale to models with hundreds of billions of parameters. 2THEMODELEDITINGPROBLEM The goal of model editing is to enable the use of a single pair of inputx e and desired outputy e to alter abase modelâs output forx e as well as itsequivalence neighborhood(related input/output pairs), all while leaving model behavior on unrelated inputs unchanged (Sinitsin et al., 2020; De Cao et al., 2021). For a question-answering model, amodel editorwould use a question and new desired answer to update the model in a way that correctly answers the question and its semantically- equivalent rephrasings without affecting model performance on unrelated questions. Some model editors, including ours, use a training phase before they can apply edits (Sinitsin et al., 2020; De Cao et al., 2021), using an edit training datasetD tr edit that specifies the types of edits that will be made. More precisely, the base modelf θ :X ĂÎâ Yis a differentiable function that maps an inputx and set of parametersθto an outputy. A model editor is a functionE:X ĂY ĂLĂÎĂÎŚâÎ that maps anedit inputx e ,edit labely e (a class label or sequence of tokens), loss functionl e : X Ă Y ĂÎâR, base model parametersθ, and optional editor parametersĎto a new set of model parametersθ e . We use the loss functionl e (x,y,θ) =âlogp θ (y|x), based on past work (De Cao et al., 2021), but other choices are possible. Model editors are evaluated on a held-out datasetD te edit =(x e ,y e ,x loc ,x Ⲡe ,y Ⲡe ) i . For algorithms that learn model editor parametersĎ, a datasetD tr edit containing tuples similar toD te edit is used, typically much smaller than the pre-trained 2 Published as a conference paper at ICLR 2022 Figure 2:The MEND architecture, consisting of two consecutive blocks, both initialized to compute the exact identity function.Left.The input to a MEND network isδ `+1 ,u ` , the components of the rank-1 gradient. Right.A MEND network produces a new rank-1 update Ě â W ` , which is added to weightsW ` to edit the model. modelâs original training set. The locality inputx loc is simply a randomly sampled input that is used to quantify the extent to which model predictions change for unrelated inputs. The alternative edit input and labelx Ⲡe andy Ⲡe are sampled from theequivalence neighborhoodN(x e ,y e )ofx e andy e , the set of examples that the edited model should generalize to after performing an edit withx e ,y e . Forx e ,y e =Who is the prime minister of the UK? Boris Johnson,N(x e ,y e )might containx Ⲡe ,y Ⲡe = Who is the UK PM? Boris Johnson, among others.x loc might beWhat team does Messi play for?. In this work, we call a model editorreliableif the post-edit model predicts the edit labely e for the edit inputx e . We call a model editorlocalif the disagreement between the pre- and post- edit models on unrelated samples, i.e.,E x loc âźD te edit KL(p θ (¡|x loc )âp θ e (¡|x loc )), is small. 1 Finally, we say a model editorgeneralizesif the post-edit model predicts the labely Ⲡe when conditioned onx Ⲡe , for (x Ⲡe ,y Ⲡe )âN(x e ,y e ). We call a model editorefficientif the time and memory requirements for computingĎand evaluatingEare small. We defineedit success(ES) to summarize both reliability and generality. It is measured as the average accuracy of the edited modelp θ e on the edit input as well as inputs drawn uniformly from the equivalence neighborhood: ES=E x Ⲡe ,y Ⲡe âźN(x e ,y e )âŞ(x e ,y e ) 1argmax y p θ e (y|x Ⲡe ) =y Ⲡe .(1) 3MODELEDITORNETWORKS WITHGRADIENTDECOMPOSITION Broadly, MEND is a method for learning to transform the raw fine-tuning gradient into a more targeted parameter update that successfully edits a model in a single step. MEND usesf θ and an edit training setD tr edit to produce a collection of model editor networksg ` , which edit the modelâs weights given new edit pairs(x e ,y e )at test time. Eachg ` transforms the fine-tuning gradient for a particular layer`into a parameter update for the layer that provides the reliability, locality, general- ity, and efficiency properties described earlier. Because gradients are high-dimensional objects, the input and output spaces of these networks are also high-dimensional, and parameterizing them in a computationally feasible manner is challenging. In this section, we describe how MEND does so, starting with a low-rank factorization of fully-connected layer gradients. 3.1APARAMETER-EFFICIENT TRANSFORMATION OF HIGH-DIMENSIONAL GRADIENTS The input to a MEND networkg ` is the fine-tuning gradientâ W ` l e (x e ,y e ,θ)at layer`and the output is the layerâs parameter edit, which we call Ě â W ` . As noted earlier, for adĂdweight matrix, this function hasd 2 inputs and outputs. Even ifg ` is a linear network with no hidden layers and produces only a rank-1 parameter edit (motivated by the effectiveness of low-rank model edits observed by Hu et al. (2021)), this function would still required 2 (d+d) = 2d 3 parameters. For a low-rank linear parameterization ofg ` with rankr, we haver(d 2 + 2d)parameters, which still carries an unacceptable cost for non-trivialr, considering thatdâ10 4 for some models (Raffel et al., 2020). MEND solves this problem using the fact that the input tog ` , the fine-tuning gradient, is a rank-1 matrix: the gradient of lossLwith respect to weightsW ` in layer`of an MLP is a rank-1 matrix for each ofBbatch elementsâ W ` L= â B i=1 δ i `+1 u i> ` , whereδ i `+1 is the gradient of the loss for batch elementiwith respect to the preactivations at layer`+ 1, andu i ` are the inputs to layer` 1 See Appendix C.2 for additional details on estimating this KL-divergence. 3 Published as a conference paper at ICLR 2022 Algorithm 1MEND Training 1:Input:Pre-trainedp θ W , weights to make editableW, editor paramsĎ 0 , edit dataset D tr edit , edit-locality tradeoffc edit 2:fortâ1,2,...do 3:Samplex e ,y e ,x Ⲡe ,y Ⲡe ,x loc âźD tr edit 4: Ě W âEDIT(θ W ,W,Ď tâ1 ,x e ,y e ) 5:L e ââlogp θ Ě W (y Ⲡe |x Ⲡe ) 6:L loc âKL(p θ W (¡|x loc )âp θ Ě W (¡|x loc )) 7:L(Ď tâ1 )âc edit L e +L loc 8:Ď t âAdam(Ď tâ1 ,â Ď L(Ď tâ1 )) Algorithm 2MEND Edit Procedure 1:procedureEDIT(θ,W,Ď,x e ,y e ) 2:Ëpâp θ W (y e |x e ),cachinginputu ` toW ` âW 3:L(θ,W)ââlog Ëp.Compute NLL 4:forW ` âWdo 5:δ `+1 ââ W ` u ` +b ` l e (x e ,y e ).Grad wrt output 6: Ěu ` , Ě Î´ `+1 âg Ď ` (u ` ,δ `+1 ).Pseudo-acts/deltas 7: Ě W ` âW ` â Ě Î´ `+1 Ěu > ` .Layer`model edit 8: Ě W â Ě W 1 ,..., Ě W k 9:return Ě W.Return edited weights for batch elementi(see Appendix D). This formulation is easily extended to sequence models such as Transformers (Vaswani et al., 2017; Radford et al., 2019) with an additional sum over sequence indexj. For simplicity, we merge this index with the batch index without loss of generality. This decomposition enables a network to condition directly on the gradient of a single example with only 2d(rather thand 2 ) input neurons. 2 With this parameterization, MEND learns functionsg ` , with parametersĎ ` , which mapu i ` andδ i `+1 topseudoactivations Ěu i ` andpseudodelta Ě Î´ i `+1 . The model edit for weight matrixW ` is then Ě â W ` = â B i=1 Ě Î´ i `+1 Ěu i> ` .(2) To further reduce the number of additional parameters, MEND shares parameters across editor net- worksg ` (note Figure 2 omits this for clarity). Because the sizes ofu ` andδ `+1 depend on the shape of the weight matrixW ` , MEND learns a separate set of editor parameters for each uniqueshapeof weight matrix to be edited. Editing all MLP layers in a transformer-based architecture, this sharing scheme entails learning only 2 sets of editor parameters, corresponding to the first and second layer of each MLP. To enable some layer-wise specialization, MEND applies a layer-specific scales ` and offseto ` to the editor network hidden state and output, similar to FiLM layers (Perez et al., 2018). Putting everything together, a MEND network computesg ` (z ` )wherez ` =concat(u ` ,δ `+1 )as h ` =z ` +Ď(s 1 ` (U 1 V 1 z ` +b) +o 1 ` ), g(z ` ) =h ` +Ď(s 2 ` U 2 V 2 h ` +o 2 ` )(3a,b) whereĎis a non-linear activation function s.t.Ď(0) = 0(ReLU in this work) andU j ,V j correspond to a low rank factorization of MENDâs weights at layerj(keeping MENDâs total parametersO(d)). To summarize, MEND parameterizesg ` as an MLP with low-rank weight matrices, residual con- nections, and a single hidden layer (see Figure 2). To edit layer`, layer activationsu i ` and output gradientsδ i `+1 are concatenated and passed together tog ` , producing a vector of equal size, which is split into pseudoactivations Ěu i ` and pseudodeltas Ě Î´ i `+1 , ultimately producing Ě â W ` (Eq. 2). The final edited weights are Ě W=W ` âÎą Ě â W ` , whereÎą ` is a learned per-layer (scalar) step size. 3.2TRAININGMEND MEND uses an editing training setD tr edit to learn parametersĎ ` for each of the MEND networks g ` . Before training, we select the weights of the modelW=W 1 ,...,W M that we would like to make editable (e.g., the weight matrices in the lastMlayers). At each step of training, we sample an edit example(x e ,y e ), locality examplex loc , and equivalence examples(x Ⲡe ,y Ⲡe )from the edit train setD tr edit . Recall thatx loc is sampled independently from the edit example, so that it is very likely that it is unrelated to the edit example. We use(x e ,y e )to compute the raw gradientâ W ` p θ W (y e |x e ) for each weight matrixW ` âW, usingθ W to denote the model parameters with un-edited weights. We then compute the parameter update for each layer Ě W=W ` âÎą ` Ě â W ` ( Ě â W ` from Eq. 2). We compute the training losses for MEND using the edited model parameters Ě W, which we back- propagate into the editing networks. Note that we do not compute any higher-order gradients, be- cause we do not optimize the pre-edit model parameters. The training losses areL e , which measures edit success andL loc , which measures edit locality (the KL divergence between the pre-edit and post-edit model conditioned on the locality inputx loc ), defined as follows (also Alg. 1 lines 5â7): 2 For a batch/sequence, we transform the gradient for each batch/sequence element independently and sum the result to acquire the final transformed gradient for the entire batch/sequence. 4 Published as a conference paper at ICLR 2022 MEND losses:L e =âlogp θ Ě W (y Ⲡe |x Ⲡe ), L loc =KL(p θ W (¡|x loc )âp θ Ě W (¡|x loc )).(4a,b) Intuitively,L e is small if the model has successfully updated its output for the edit exampleâs equivalence neighborhood, whileL loc is small if the edit did not affect the modelâs behavior on unrelated inputs. The total training loss for a MEND network is computed asL MEND = c e L e (θ Ě W ) +L loc (θ W ,θ Ě W ). We optimizeL MEND with respect to the MEND parameters at each time step using the Adam optimizer (Kingma and Ba, 2015), usingc e = 0.1for all experiments. While MENDâs parameterization can tractablyrepresenta mapping from gradients to model edits, training the editor presents its own challenges. Appendix A describes MENDâs identity initialization and input normalization, which our ablations in Section 5.4 show are important to effective edits. 4RELATEDWORK Preserves model? Only (x e ,y e )? Batched edits? Scales to 10B? Few steps? Editor FT33337 FT+KL37337 ENN73373 KE33?33 MEND33333 Table 1: Conceptual comparisonsof model editors; MEND provides a unique combination of useful at- tributes.Preserves modelmeans the editor guaran- tees model predictions will not be alteredbeforean edit is applied.Only(x e ,y e )means the editor ap- plies an edit at test time using only the edit pair (not needing access to the training set at test time as well). Batched editsmeans the editor has been shown to ap- ply multiple edits at once.Scales to 10Bmeans our implementation of the editor could run on a model with over 10B parameters using our single-GPU envi- ronment (see Appendix C.3).Few stepsmeans edits are applied with one or a small number of steps.FT refers to fine-tuning;FT+KLadds a KL-divergence penalty between the original and fine-tuned model. Various strategies for model editing exist, in- cluding modifications of standard fine-tuning in- tended to enforce locality by reducing distance traveled in parameter space (Zhu et al., 2020) or even find the min-L2 norm parameter up- date that reliably edits the modelâs output (So- toudeh and Thakur, 2021). However, De Cao et al. (2021) observe that parameter-space con- straints do not always translate to useful function- space constraints for neural networks. Our fine- tuning baselines thus use a KL-divergence con- straint in function space, but, even with this modi- fication, we find that fine-tuning generally doesnât consistently provide edit generality. Other ap- proaches to editing such as Editable Neural Net- works (ENN; Sinitsin et al. (2020)) or Knowl- edgeEditor (KE; De Cao et al. (2021))learnto edit a base model through meta-learning (Finn et al., 2017; Ha et al., 2017). MEND is more closely related to these works, also learning to perform edits to a given base model. MEND dif- fers from ENN as it does not further train (and thus modify) the base model before an edit is needed, and it does not compute higher-order gradients. Because ENN modifies the pre-edit model, the train- ing process retains a copy of the original model in order to enforce the constraint that the editable model agrees with the original pre-trained modelâs predictions. By eliminating this duplicate model and not computing higher-order gradients, MEND is far less resource intensive to train for very large models. Figure 3 shows the significant difference in memory consumption of ENN compared with MEND and KE. MEND is most similar to KE, which also presents a first-order algorithm that does not modify the pre-edit model. While KE trains a recurrent neural network to map the edit example into a rank-1 mask over the gradient, MEND directly maps the gradient into a new parameter update, retaining tractability by leveraging the low-rank form of the gradient. Table 1 contains an overview of algorithmic tradeoffs. See Appendix B for extended discussion of related work. Various methods for meta-learning also use gradient transforms to achieve better model updates for few-shot learning (Ravi and Larochelle, 2017; Li et al., 2017; Lee and Choi, 2018; Park and Oliva, 2019; Flennerhag et al., 2020). However, these approaches do not leverage the factorized gradient, limiting them to simpler transformations (typically linear) of the gradient and/or transformations that also often impact the function computed by the forward pass of the model. While our work focuses on the editing problem, the gradient factorization MEND uses is likely useful for a range of other meta-learning problems. Generally, gradient-based meta-learning algorithms based on MAML (Finn et al., 2017; Lee and Choi, 2018; Park and Oliva, 2019; Flennerhag et al., 2020) rely on modifying the model parameters to provide adaptability, while MEND adds adaptability post-hoc to a pre-trained model by training parameters independent from the modelâs forward pass. In the NLP literature, many papers have investigated the locus of various types of knowledge in language models, using learned probe models or iterative search procedures to test for linguistic 5 Published as a conference paper at ICLR 2022 InputPre-Edit OutputEdit TargetPost-Edit Output 1a:Who is Indiaâs PM?Satya Pal Malik7Narendra ModiNarendra Modi3 1b:Who is the prime minister of the UK? Theresa May7Boris JohnsonBoris Johnson3 1c: Who is the prime minister of India? Narendra Modi3âNarendra Modi3 1d: Who is the UK PM?Theresa May7âBoris Johnson3 2a:What is Messiâs club team?Barcelona B7PSGPSG3 2b:What basketball team does Lebron play on? Dallas Mavericks7the LA Lakersthe LA Lakers3 2c: Where in the US is Raleigh?a state in the South3âa state in the South3 3a:Who is the president of Mexico? Enrique Pea Nieto7AndrĂŠs Manuel LĂłpez Obrador AndrĂŠs Manuel LĂłpez Obrador3 3b: Who is the vice president of Mexico? Yadier Benjamin Ramos7 âAndrĂŠs Manuel LĂłpez Obrador7 Table 2: Examples of using MENDto edit a T5-small model fine-tuned on Natural Questions by Roberts et al. (2020). Each example shows the output of the model before and after editing.Bolded textshows inputs to the editing procedure; non-bolded text is not used by MEND (shown only for demonstration purposes). In examples 1 and 2, we perform multiple edits in sequence with MEND; in ex. 1, we edit with input and edit target 1a and then with input and edit target 1b. Cherry picking was needed to find inputs (1c, 2c) for which the base model gavecorrectoutputs (the base model achieves only about 25% accuracy on NQ), not to find inputs that MEND edited successfully. See Table 10 in the Appendix for additional examples and failure cases. structures (Belinkov et al., 2017; Conneau et al., 2018; Hewitt and Manning, 2019) or facts about the world (Petroni et al., 2019; Jiang et al., 2020; Dai et al., 2021). However, these works typically do not considerinterventionson a modelâs knowledge. Exceptions are Dai et al. (2021) and Wang et al. (2020), which assume access to many datapoints representing the knowledge to be edited; our work considers modeling editing usingonlya single example illustrating the modelâs error. 5EXPERIMENTS A key motivation for MEND is scalability to large models, which requires an algorithm to be efficient in terms of computation time and particularly memory consumption. We conduct experiments to a) assess the effectiveness of various approaches to model editing when applied to very large models, b) compare these results with editor behavior on small models, and c) understand the impact of MENDâs key design components. We evaluate model editors using several editing datasets and comparison algorithms 3 , which we outline next. Editing Datasets.All editing datasets pair each edit inputx e (questions, text passages) with a plau- sible edit labely e that is intended to mimic the distribution of edit labels we would encounter in practice (changing a QA modelâs answer or steering a generative model toward a particular con- tinuation). For example, in a QA setting, plausible edit labels include the ground truth label as well as entities of the same type as the true answer. See Appendix C.4 Tables 7 and 8 for sample data. Specifically, for seq2seq models, we use thezsRE question-answeringdataset (Levy et al., 2017) using question rephrasings generated by backtranslation as the equivalence neighborhood and train/val splits generated by De Cao et al. (2021). Eachx e is a question about an entity, and plausible alternative edit labelsy e are sampled from the top-ranked predictions of a BART-base model trained on zsRE question-answering. When editing models pre-trained on the zsRE question-answering problem, we samplex loc as independent questions from the edit train set. For other experiments (Section 5.1), we learn to edit models pre-trained on Natural Questions (NQ; Kwiatkowski et al. (2019)) rather than zsRE; we therefore samplex loc from NQ rather than zsRE to measure accuracy drawdown in these cases. For classification models (e.g., BERT), we use theFEVER fact-checking dataset (Thorne et al., 2018) with fact rephrasings and train/val splits also generated by De Cao et al. (2021). Eachx e is a fact, and eachy e is a random binary label sampled from a Bernoulli distribution withp= 0.5. Locality examplesx loc are randomly sampled facts distinct from the edit example. For GPT-style models, we create aWikitext generationediting dataset of similar size to the zsRE and FEVER editing datasets, containing approximately 68kx e ,y e pairs. Eachx e is a passage sampled 3 For each dataset,all algorithms edit the same parameters. For BART/T5, we edit the MLP layers of the last 2 encoder & decoder blocks; for GPT/BERT models, we edit the MLPs in the last 3 blocks. 6 Published as a conference paper at ICLR 2022 Wikitext GenerationzsRE Question-Answering GPT-Neo (2.7B)GPT-J (6B)T5-XL (2.8B)T5-XXL (11B) EditorESâppl. DâESâppl. DâESâacc. DâESâacc. Dâ FT0.550.1950.800.1250.58< 0.0010.87< 0.001 FT+KL0.400.0260.360.1090.55< 0.0010.85< 0.001 KE0.000.1370.010.0680.03< 0.0010.04< 0.001 MEND0.810.0570.880.0310.880.0010.89< 0.001 Table 3: Editing very large pre-trained modelson our Wikitext generative editing problem and the zsRE question-answering editing problem used by De Cao et al. (2021). MEND consistently produces more effective edits (higher success, lower drawdown) than existing editors.ESis the edit success rate, whileppl. DDand acc. DDare the model drawdown in units of perplexity increase or accuracy decrease, respectively. Due to ENNâs memory requirements, we were unable to run the algorithm for models of this size. The low drawdown for all T5 models may occur because the T5 models (pre-trained on mask filling and finetuned for question- answering by Roberts et al. (2020)) might not be fully converged on the question-answering problem. Edits may therefore effectively serve as task specification, further fine-tuning the model on question-answering.FT refers to fine-tuning;FT+KLis fine-tuning with a KL-div. penalty between the original and fine-tuned model. from Wikitext-103 andy e is a 10-token sample from a pre-trained distilGPT-2 model. 4 x loc is cho- sen depending on the pre-trained model: for models pre-trained on Wikitext,x loc is sampled from Wikitext-103 (independently fromx e ). For GPT-Neo/J, we samplex loc from OpenWebText (OWT; (Gokaslan and Cohen, 2019)) to better match the modelâs original training data. The equivalence neighborhood in this setting isN(x e ,y e ) =(x k e ,y e ), wherex k e is formed by removing a prefix of up to |x e | 2 tokens from the beginning ofx e , where|x e |is the length ofx e in tokens. Comparison of model editors.We compare MEND with several other model editors, including two fine-tuning-based algorithms (which do not train any model editor at all) and two learned model edi- tors. Thefine-tune (FT)algorithm fine-tunes on the edit example(x e ,y e )until the label is assigned the highest likelihood (using greedy decoding for sequence models). The âoracleâfine-tune + KL (FT+KL)algorithm has access to the training set at test time and addsL loc (Eq. 4b) to the test-time fine-tuning objective (which is typically only computable during model editor training). Similarly to De Cao et al. (2021), we limit each of these algorithms to 100 fine-tuning steps. Additionally, we compare with twolearnedmodel editors: a re-implementation of Editable Neural Networks (ENN; Sinitsin et al., 2020) when possible (due to high memory usage) and KnowledgeEditor (KE; De Cao et al., 2021). We useidentical hyperparametersfor MEND across all models and datasets. For BART and T5 models, we edit the MLP weight matrices in the last 2 transformer blocks of the encoder and decoder; for other models, we edit the MLP weights in the last 3 transformer blocks. Appendix G explores a simple caching-based model editor that stores model edits in memory. Metrics.Our experiments measure the reliability and generality of a model editor usingedit success (ES)(Eq. 1). To assess locality, we usedrawdown (D), which is defined as the performance degradation of the edited model on the rest of the dataset, measured as either the edited modelâs perplexity increase or accuracy decrease compared to the base model, depending on the problem. 5.1EDITING VERY LARGE TRANSFORMER MODELS We first consider the problem of editing some of the largest publicly-available Transformer mod- els. We use GPT-Neo (2.7B parameters; Black et al., 2021) and GPT-J (6B parameters; Wang and Komatsuzaki, 2021), several times larger than GPT-2 (Radford et al., 2019), and the largest two T5 models, T5-XL (2.8B parameters) and T5-XXL (11B parameters) fine-tuned on NQ (Roberts et al., 2020). Table 3 shows the results; MEND provides the most successful edits across tasks. Fine-tuning achieves lower edit success on the Wikitext task and exhibits a much larger perplexity increase than MEND. On the question-answering edit task, fine-tuning shows similarly reduced edit success, struggling to generalize to some rephrasings of the edit input. The KL-constrained baseline reduces the perplexity drawdown for GPT-Neo and GPT-J, but at the cost of edit success. KE is ineffective at this scale, generally failing to provide successful edits. For these experiments, we use OWT and NQ to measure drawdown for generation and question-answering, respectively, as they are more representative of the data used to train the base models. 4 The base modelâs greedy 10-token prediction agrees with these edit targets for <1% of examples. 7 Published as a conference paper at ICLR 2022 FEVER Fact-CheckingzsRE Question-AnsweringWikitext Generation BERT-base (110M)BART-base (139M)distilGPT-2 (82M) EditorESâacc. DâESâacc. DâESâppl. Dâ FT0.76< 0.0010.96< 0.0010.290.938 FT+KL0.64< 0.0010.89< 0.0010.170.059 ENN0.990.0030.99< 0.0010.930.094 KE0.950.0040.98< 0.0010.250.595 MEND> 0.99< 0.0010.980.0020.860.225 Table 4: Small-scale model editingwith various model editors on three editing problems. ENN and MEND show the most consistently good performance, with ENN exceeding MENDâs performance on the Wikitext problem. MENDâs primary advantages are its consistent performance from 100M to 10B parameter models and the fact that it does not modify the pre-edit model (unlike ENN). The pre-trained models and editing data for the FEVER fact-checking and zsRE question-answering problems are used from the checkpoints and data released by De Cao et al. (2021); for generation, we use distilGPT-2 fine-tuned on Wikitext2 (Ma, 2021). 5.2SMALLER SCALE EDITING Figure 3: GPU VRAM consumption during training. ENNâs memory usage 5 is prohibitively high for very large mod- els, while MEND and KE can be trained on a single GPU. Figure 4 shows similar chart for GPT models. We conduct an additional experiment editing the BERT-base and BART-base models fine-tuned by De Cao et al. (2021) on the FEVER fact-checking and zsRE question-answering tasks, respectively, and our Wikitext editing task, editing a smaller distilGPT-2 model (Wolf et al., 2019) fine-tuned on Wikitext2 (Ma, 2021). These models are 1â2 orders of mag- nitude smaller than those in Section 5.1. Results are presented in Table 4. At small scale where computational requirements are not a concern, ENN is competitive with MEND, providing the best performance on the Wikitext problem. Fine-tuning overfits even more severely than with larger models, showing lower edit success (overfitting to the edit example) and higher drawdown (degrading the model more seriously). One diffi- culty of using ENN is that the pre-trained model itself must be fine-tuned to âprovideâ editability, potentially changing the modelâs predictions evenbeforean edit has been applied. Un- like the large-scale experiments, drawdown is computed using samples from the same datasets as edit inputs, again in order to best match the data distribution the base models were fine-tuned on. See Appendix G for additional comparisons with the caching-based editor, which shows strong per- formance for zsRE and FEVER, but generally fails for Wikitext, as well as a more difficult version of the zsRE problem for which MEND still produces meaningful edits. 5.3BATCHEDEDITING Edit SuccessâAcc. Drawdownâ EditsENNMENDENNMEND 10.990.98< 0.0010.002 50.940.970.0070.005 250.350.890.0050.011 750.160.780.0050.011 1250.110.670.0060.012 Table 5: Batched edits with MEND and ENNon zsRE QA using the BART-base pre-trained model from De Cao et al. (2021). When applying multiple edits at once, MEND is far more effective than ENN. Table 5 compares MEND with ENN (the strongest comparison method) in a more realistic setting when multiple simultaneous zsRE QA model ed- its are needed; MEND consistently provides sig- nificantly more effective edits in the multi-edit setting. Both algorithms are trained and evalu- ated on applyingksimultaneous edits, withkâ 1,5,25,75,125. MEND applies simultaneous edits by simply summing the parameter edit com- puted separately for each edit example. MEND ap- plies 25 edits in a single model update with 96% edit success and less than 1% accuracy degrada- tion (35% edit success for ENN), and successfully applies 67% of edits when applying 125 edits at once (11% success for ENN, although ENNâs accuracy drawdown is slightly lower). 5 We report the memory usage of our re-implementation of ENN (Sinitsin et al., 2020). Techniques like gra- dient checkpointing can reduce memory consumption, but an optimized ENN implementation is not available. 8 Published as a conference paper at ICLR 2022 Wikitext GenerationzsRE Question-Answering distilGPT-2 (82M)BART-base (139M) MEND VariantEditor ParametersESâppl. DâESâacc. Dâ No sharingO((m+n) 2 N)0.860.195> 0.990.001 No norm.O((m+n) 2 )0.020.3700.97< 0.001 No ID init.O((m+n) 2 )0.270.8980.94< 0.001 Onlyu ` O(m 2 )0.630.5590.980.002 Onlyδ `+1 O(n 2 )0.800.4450.990.001 Only smallerO(min(m,n) 2 )0.800.5930.980.002 MENDO((m+n) 2 )0.860.225> 0.990.001 Table 6: Ablating various properties of MENDon the Wikitext and zsRE question-answering editing prob- lems.m=dim(u ` ),n=dim(δ `+1 ), andNis the number of layers being edited. Removing MENDâs identity initialization and input normalization noticeably lowers editing performance, and relaxations of MEND, par- ticularly the âonly smallerâ variant that only outputs pseudoactivationsorpseudodeltas, whichever is smaller, show competitive performance, which bodes well for scaling MEND to 100 billion+ parameter models. 5.4ABLATIONS& MEND VARIANTS Table 6 shows ablations of MENDâs parameter sharing, identity initialization, and input normaliza- tion as well as three variants of MEND that reduce total parameters: only computing pseudoacti- vationsu ` , only pseudodeltasδ `+1 , or only whichever ofu ` orδ `+1 is lower-dimensional (layer- dependent for non-square weights). âNo ID init.â replaces zero initialization with Xavier/Glorot initialization (Glorot and Bengio, 2010). Removingeitherinput normalization or identity initializa- tion significantly reduces edit effectiveness (and increases training timeâź10x). Sharing parameters across model editor networks incurs relatively little performance cost, and editingonlythe smaller of the pseudoactivations and pseudodeltas, the most most lightweight version of MEND, still produces effective edits, suggesting that MEND could scale to even much larger models for whichm+n approaches10 5 (Brown et al., 2020) butmin(m,n)remains close to10 4 . Appendix E shows an additional ablation editing attention matrices, rather than MLP weights, finding that editing MLP weights is consistently more effective for large models. 6DISCUSSION Conclusion.We have presented an efficient approach to editing very large (10 billion+ parameter) neural networks, which we call Model Editor Networks with Gradient Decomposition or MEND. We showed that MEND is the only method that successfully edits the largest publicly-available Transformer models from the GPT and T5 model families. To do so, MEND treats the model editing problem itself as a learning problem, using a relatively small edit dataset to learn model editor networks that can correct model errors using only a single input-output pair. MEND leverages the fact that gradients with respect to the fully-connected layers in neural networks are rank-1, enabling a parameter-efficient architecture that represents this gradient transform. Limitations & Future Work.A limitation of existing model editors (including MEND) is the approach to enforcing locality of edits. The failure mode of over-generalization (bottom of Table 2) shows that locality examples (i.e., negative examples) are not challenging enough to prevent the model from sometimes changing its output for distinct but related inputs. Alternative locality losses or harder negative mining may help address this problem. Further, existing language-based editing datasets use backtranslation to evaluate edit generality (and our Wikitext dataset uses a truncation heuristic). Such equivalence neighborhoods do not assess a modelâs ability to use the knowledge in an edit example to correctly answer questions about other topics whose answer isimpliedby the content of the edit example (e.g., forWho is the UK PM? Boris Johnson, does the edited model correctly answerIs Boris Johnson a private citizen?). Counterfactual data augmentation (Kaushik et al., 2020) may be useful for constructing richer evaluation cases for edit generality. Future work might also apply MEND to other types of edits, such as reducing the frequency of toxic generations after observing toxic outputs, relabeling entire classes of images from one example, or adjusting a robotâs control policy to avoid particular actions, as MEND is not limited to editing transformer models. Finally, MENDâs gradient decomposition is not in principle limited to the model editing problem, and it might enable efficient new gradient-based meta-learning algorithms. 9 Published as a conference paper at ICLR 2022 ACKNOWLEDGEMENTS We gratefully acknowledge Angeliki Lazaridou for insightful early discussions regarding temporal generalization in language models; Spencer Braun for implementing exploratory experiments that motivated this project; Mitchell Wortsman, Gabriel Ilharco, Stephanie Chan, and Archit Sharma for insightful discussions and encouragement; Michael Chang, Michael Janner, and Ashwin Paran- jape for feedback on an early version of the paper; and the anonymous ICLR reviewers for their feedback. Eric Mitchell gratefully acknowledges the support of a Knight-Hennessy graduate fellow- ship. Chelsea Finn and Chris Manning are fellows in the CIFAR Learning in Machines and Brains program. ETHICSSTATEMENT This work uses large language models pre-trained on text scraped from the internet. These massive training corpora (and therefore the models trained on them) may contain (or produce) content that is counter to the values of the ICLR community. Algorithms for model editing may provide one tool (among others) to mitigate this problem by enabling maintainers of large models to change certain undesirable model behaviors as they are discovered. On the other hand, a model editor could also be used to exacerbate the very model behaviors that we hope to eliminate, depending on who is wielding it. This dual use is a risk for many machine learning technologies. Specifically, effective editing algorithms (including MEND and others) may enable maintainers of deployed neural networks to include backdoors or other planned vulnerabilities/hidden behaviors into their models. REPRODUCIBILITY To foster reproducibility, we have provided a detailed description of the proposed algorithm in Sec- tion 3, as well as additional details regarding experimental setup, hyperparameters, and implemen- tations of comparison algorithms in Section C. Our experiments use fixed random seeds for data sampling and model editor initialization, enabling reproducible results. Section C.4 describes how to obtain the pre-existing datasets and models we used in our experiments (from De Cao et al. (2021)). See project website at https://sites.google.com/view/mend-editing for links to code and data. 10 Published as a conference paper at ICLR 2022 REFERENCES Yonatan Belinkov, Nadir Durrani, Fahim Dalvi, Hassan Sajjad, and James Glass. What do neural ma- chine translation models learn about morphology? InProceedings of the 55th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 861â872, Vancou- ver, Canada, July 2017. Association for Computational Linguistics. doi: 10.18653/v1/P17-1080. URLhttps://aclanthology.org/P17-1080. Sid Black, Gao Leo, Phil Wang, Connor Leahy, and Stella Biderman. GPT-Neo: Large Scale Au- toregressive Language Modeling with Mesh-Tensorflow, March 2021. URLhttps://doi. org/10.5281/zenodo.5297715. Tom B. Brown, Benjamin Mann, Nick Ryder, Melanie Subbiah, Jared Kaplan, Prafulla Dhari- wal, Arvind Neelakantan, Pranav Shyam, Girish Sastry, Amanda Askell, Sandhini Agarwal, Ariel Herbert-Voss, Gretchen Krueger, Tom Henighan, Rewon Child, Aditya Ramesh, Daniel M. Ziegler, Jeffrey Wu, Clemens Winter, Christopher Hesse, Mark Chen, Eric Sigler, Mateusz Litwin, Scott Gray, Benjamin Chess, Jack Clark, Christopher Berner, Sam McCandlish, Alec Radford, Ilya Sutskever, and Dario Amodei. Language models are few-shot learners.Neural Information Processing Systems, 2020. Wuyang Chen, Wei Huang, Xianzhi Du, Xiaodan Song, Zhangyang Wang, and Denny Zhou. Auto- scaling vision transformers without training. InInternational Conference on Learning Represen- tations, 2022. URLhttps://openreview.net/forum?id=H94a1_Pyr-6. Alexis Conneau, German Kruszewski, Guillaume Lample, LoĂŻc Barrault, and Marco Baroni. What you can cram into a single $&!#* vector: Probing sentence embeddings for linguistic properties. InProceedings of the 56th Annual Meeting of the Association for Computational Linguistics (Volume 1: Long Papers), pages 2126â2136, Melbourne, Australia, July 2018. Association for Computational Linguistics. doi: 10.18653/v1/P18-1198. URLhttps://aclanthology. org/P18-1198. Damai Dai, Li Dong, Yaru Hao, Zhifang Sui, and Furu Wei. Knowledge neurons in pretrained trans- formers.CoRR, abs/2104.08696, 2021. URLhttps://arxiv.org/abs/2104.08696. Nicola De Cao, W. Aziz, and Ivan Titov. Editing factual knowledge in language models.Proceedings of the 2021 Conference on Empirical Methods in Natural Language Processing, 2021. URL https://arxiv.org/pdf/2104.08164.pdf. Chelsea Finn, Pieter Abbeel, and Sergey Levine. Model-agnostic meta-learning for fast adapta- tion of deep networks. InICML, 2017. URLhttp://proceedings.mlr.press/v70/ finn17a.html. Sebastian Flennerhag, Andrei A. Rusu, Razvan Pascanu, Francesco Visin, Hujun Yin, and Raia Hadsell. Meta-learning with warped gradient descent. InInternational Conference on Learning Representations, 2020. URLhttps://openreview.net/forum?id=rkeiQlBFPB. Mor Geva, R. Schuster, Jonathan Berant, and Omer Levy. Transformer feed-forward layers are key-value memories. InEMNLP, 2021. Xavier Glorot and Yoshua Bengio. Understanding the difficulty of training deep feedforward neu- ral networks. In Yee Whye Teh and Mike Titterington, editors,Proceedings of the Thirteenth International Conference on Artificial Intelligence and Statistics, volume 9 ofProceedings of Machine Learning Research, pages 249â256, Chia Laguna Resort, Sardinia, Italy, 13â15 May 2010. PMLR. URLhttps://proceedings.mlr.press/v9/glorot10a.html. Aaron Gokaslan and Vanya Cohen. Openwebtext corpus.http://Skylion007.github.io/ OpenWebTextCorpus, 2019. Edward Grefenstette, Brandon Amos, Denis Yarats, Phu Mon Htut, Artem Molchanov, Franziska Meier, Douwe Kiela, Kyunghyun Cho, and Soumith Chintala. Generalized inner loop meta- learning.arXiv preprint arXiv:1910.01727, 2019. 11 Published as a conference paper at ICLR 2022 Demi Guo, Alexander Rush, and Yoon Kim. Parameter-efficient transfer learning with diff prun- ing. InProceedings of the 59th Annual Meeting of the Association for Computational Linguis- tics and the 11th International Joint Conference on Natural Language Processing (Volume 1: Long Papers), pages 4884â4896, Online, August 2021. Association for Computational Linguis- tics. doi: 10.18653/v1/2021.acl-long.378. URLhttps://aclanthology.org/2021. acl-long.378. David Ha, Andrew M. Dai, and Quoc V. Le.Hypernetworks.In5th International Confer- ence on Learning Representations, ICLR 2017, Toulon, France, April 24-26, 2017, Conference Track Proceedings. OpenReview.net, 2017. URLhttps://openreview.net/forum?id= rkpACe1lx. Kaiming He, Xiangyu Zhang, Shaoqing Ren, and Jian Sun. Deep residual learning for image recog- nition. In2016 IEEE Conference on Computer Vision and Pattern Recognition (CVPR), pages 770â778, 2016. doi: 10.1109/CVPR.2016.90. John Hewitt and Christopher D. Manning. A structural probe for finding syntax in word representa- tions. InProceedings of the 2019 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies, Volume 1 (Long and Short Pa- pers), pages 4129â4138, Minneapolis, Minnesota, June 2019. Association for Computational Lin- guistics. doi: 10.18653/v1/N19-1419. URLhttps://aclanthology.org/N19-1419. Edward Hu, Yelong Shen, Phil Wallis, Zeyuan Allen-Zhu, Yuanzhi Li, Lu Wang, and Weizhu Chen. Lora: Low-rank adaptation of large language models, 2021. Gao Huang, Zhuang Liu, Laurens van der Maaten, and Kilian Q Weinberger. Densely connected convolutional networks. InProceedings of the IEEE Conference on Computer Vision and Pattern Recognition, 2017. Zhengbao Jiang, Frank F. Xu, J. Araki, and Graham Neubig. How can we know what language models know?Transactions of the Association for Computational Linguistics, 8:423â438, 2020. Divyansh Kaushik, Eduard Hovy, and Zachary Lipton. Learning the difference that makes a differ- ence with counterfactually-augmented data. InInternational Conference on Learning Represen- tations, 2020. URLhttps://openreview.net/forum?id=Sklgs0NFvr. Diederik P. Kingma and Jimmy Ba. Adam: A method for stochastic optimization. In Yoshua Bengio and Yann LeCun, editors,3rd International Conference on Learning Representations, ICLR 2015, San Diego, CA, USA, May 7-9, 2015, Conference Track Proceedings, 2015. URL http://arxiv.org/abs/1412.6980. James Kirkpatrick, Razvan Pascanu, Neil Rabinowitz, Joel Veness, Guillaume Desjardins, Andrei A. Rusu, Kieran Milan, John Quan, Tiago Ramalho, Agnieszka Grabska-Barwinska, Demis Hass- abis, Claudia Clopath, Dharshan Kumaran, and Raia Hadsell. Overcoming catastrophic forget- ting in neural networks.Proceedings of the National Academy of Sciences, 114(13):3521â3526, 2017. ISSN 0027-8424. doi: 10.1073/pnas.1611835114. URLhttps://w.pnas.org/ content/114/13/3521. Tom Kwiatkowski, Jennimaria Palomaki, Olivia Redfield, Michael Collins, Ankur Parikh, Chris Al- berti, Danielle Epstein, Illia Polosukhin, Matthew Kelcey, Jacob Devlin, Kenton Lee, Kristina N. Toutanova, Llion Jones, Ming-Wei Chang, Andrew Dai, Jakob Uszkoreit, Quoc Le, and Slav Petrov. Natural questions: a benchmark for question answering research.Transactions of the Association of Computational Linguistics, 2019. Angeliki Lazaridou, Adhiguna Kuncoro, Elena Gribovskaya, Devang Agrawal, Adam Liska, Tay- fun Terzi, Mai Gimenez, Cyprien de Masson dâAutume, TomĂĄĹĄ Ko Ë ciskĂ˝, Sebastian Ruder, Dani Yogatama, Kris Cao, Susannah Young, and Phil Blunsom. Mind the gap: Assessing tempo- ral generalization in neural language models. In A. Beygelzimer, Y. Dauphin, P. Liang, and J. Wortman Vaughan, editors,Advances in Neural Information Processing Systems, 2021. URL https://openreview.net/forum?id=73OmmrCfSyy. Yoonho Lee and Seungjin Choi. Gradient-based meta-learning with learned layerwise metric and subspace. InInternational Conference on Machine Learning, pages 2933â2942, 2018. 12 Published as a conference paper at ICLR 2022 Omer Levy, Minjoon Seo, Eunsol Choi, and Luke Zettlemoyer. Zero-shot relation extraction via reading comprehension. InProceedings of the 21st Conference on Computational Natural Lan- guage Learning (CoNLL 2017), pages 333â342, Vancouver, Canada, August 2017. Association for Computational Linguistics. doi: 10.18653/v1/K17-1034. URLhttps://w.aclweb. org/anthology/K17-1034. Zhenguo Li, Fengwei Zhou, Fei Chen, and Hang Li. Meta-sgd: Learning to learn quickly for few shot learning.CoRR, abs/1707.09835, 2017. URLhttp://arxiv.org/abs/1707. 09835. Yuxuan Ma.distilgpt2-finetuned-wikitext2.https://huggingface.co/MYX4567/ distilgpt2-finetuned-wikitext2, July 2021. Michael McCloskey and Neal J. Cohen.Catastrophic interference in connectionist networks: The sequential learning problem.Psychology of Learning and Motivation, 24:109â165, 1989. ISSN 0079-7421. doi: https://doi.org/10.1016/S0079-7421(08)60536-8. URLhttps://w. sciencedirect.com/science/article/pii/S0079742108605368. German I. Parisi, Ronald Kemker, Jose L. Part, Christopher Kanan, and Stefan Wermter. Con- tinual lifelong learning with neural networks: A review.Neural Networks, 113:54â71, 2019. ISSN 0893-6080. doi: https://doi.org/10.1016/j.neunet.2019.01.012. URLhttps://w. sciencedirect.com/science/article/pii/S0893608019300231. Eunbyung Park and Junier B Oliva. Meta-curvature. In H. Wallach, H. Larochelle, A. Beygelz- imer, F. d'AlchĂŠ-Buc, E. Fox, and R. Garnett, editors,Advances in Neural Information Processing Systems, volume 32. Curran Associates, Inc., 2019. Adam Paszke, Sam Gross, Francisco Massa, Adam Lerer, James Bradbury, Gregory Chanan, Trevor Killeen, Zeming Lin, Natalia Gimelshein, Luca Antiga, Alban Desmaison, Andreas Kopf, Edward Yang, Zachary DeVito, Martin Raison, Alykhan Tejani, Sasank Chilamkurthy, Benoit Steiner, Lu Fang, Junjie Bai, and Soumith Chintala. Pytorch: An imperative style, high- performance deep learning library. In H. Wallach, H. Larochelle, A. Beygelzimer, F. d'AlchĂŠ-Buc, E. Fox, and R. Garnett, editors,Advances in Neural Information Processing Systems 32, pages 8024â8035. Curran Associates, Inc., 2019. URLhttp://papers.neurips.c/paper/ 9015-pytorch-an-imperative-style-high-performance-deep-learning-library. pdf. Ethan Perez, Florian Strub, Harm de Vries, Vincent Dumoulin, and Aaron C. Courville. Film: Visual reasoning with a general conditioning layer. InAAAI, 2018. Fabio Petroni, Tim Rocktäschel, Sebastian Riedel, Patrick Lewis, Anton Bakhtin, Yuxiang Wu, and Alexander Miller. Language models as knowledge bases?InProceedings of the 2019 Conference on Empirical Methods in Natural Language Processing and the 9th International Joint Conference on Natural Language Processing (EMNLP-IJCNLP), pages 2463â2473, Hong Kong, China, November 2019. Association for Computational Linguistics. doi: 10.18653/v1/ D19-1250. URLhttps://aclanthology.org/D19-1250. Alec Radford, Jeff Wu, Rewon Child, David Luan, Dario Amodei, and Ilya Sutskever. Language models are unsupervised multitask learners, 2019.URLhttps://d4mucfpksywv. cloudfront.net/better-language-models/language_models_are_ unsupervised_multitask_learners.pdf. Colin Raffel, Noam Shazeer, Adam Roberts, Katherine Lee, Sharan Narang, Michael Matena, Yanqi Zhou, Wei Li, and Peter J. Liu. Exploring the limits of transfer learning with a unified text-to- text transformer.Journal of Machine Learning Research, 21(140):1â67, 2020. URLhttp: //jmlr.org/papers/v21/20-074.html. R. Ratcliff. Connectionist models of recognition memory: constraints imposed by learning and forgetting functions.Psychological review, 97 2:285â308, 1990. Sachin Ravi and H. Larochelle. Optimization as a model for few-shot learning. InICLR, 2017. 13 Published as a conference paper at ICLR 2022 Adam Roberts, Colin Raffel, and Noam Shazeer. How much knowledge can you pack into the parameters of a language model?, 2020. Anton Sinitsin, Vsevolod Plokhotnyuk, Dmitry Pyrkin, Sergei Popov, and Artem Babenko. Ed- itable neural networks. InICLR, 2020. URLhttps://openreview.net/forum?id= HJedXaEtvS. Matthew Sotoudeh and Aditya V. Thakur.Provable repair of deep neural networks.ArXiv, abs/2104.04413, 2021. James Thorne, Andreas Vlachos, Christos Christodoulopoulos, and Arpit Mittal. FEVER: a large- scale dataset for fact extraction and VERification. InNAACL-HLT, 2018. Ashish Vaswani, Noam Shazeer, Niki Parmar, Jakob Uszkoreit, Llion Jones, Aidan N. Gomez, Lukasz Kaiser, and Illia Polosukhin. Attention is all you need. InProceedings of the 31st In- ternational Conference on Neural Information Processing Systems, NIPSâ17, page 6000â6010, Red Hook, NY, USA, 2017. Curran Associates Inc. ISBN 9781510860964. Ben Wang and Aran Komatsuzaki. GPT-J-6B: A 6 Billion Parameter Autoregressive Language Model.https://github.com/kingoflolz/mesh-transformer-jax, May 2021. Ruize Wang, Duyu Tang, Nan Duan, Zhongyu Wei, Xuanjing Huang, Jianshu ji, Guihong Cao, Daxin Jiang, and Ming Zhou. K-adapter: Infusing knowledge into pre-trained models with adapters, 2020. URLhttp://arxiv.org/abs/2002.01808. Shibo Wang and Pankaj Kanwar. Bfloat16: The secret to high performance on cloud tpus, 2019. URLhttps://cloud.google.com/blog/products/ai-machine-learning/ bfloat16-the-secret-to-high-performance-on-cloud-tpus.[Online; accessed 28-September-2021]. Thomas Wolf, Lysandre Debut, Victor Sanh, Julien Chaumond, Clement Delangue, Anthony Moi, Pierric Cistac, Tim Rault, RĂŠmi Louf, Morgan Funtowicz, and Jamie Brew. Huggingfaceâs transformers: State-of-the-art natural language processing.CoRR, abs/1910.03771, 2019. URL http://arxiv.org/abs/1910.03771. Hongyi Zhang, Yann N. Dauphin, and Tengyu Ma. Residual learning without normalization via better initialization. InInternational Conference on Learning Representations, 2019. URL https://openreview.net/forum?id=H1gsz30cKX. Chen Zhu, Ankit Singh Rawat, Manzil Zaheer, Srinadh Bhojanapalli, Daliang Li, Felix Yu, and Sanjiv Kumar. Modifying memories in transformer models, 2020. URLhttps://arxiv. org/abs/2012.00363. 14 Published as a conference paper at ICLR 2022 AEFFECTIVE INITIALIZATION AND NORMALIZATION FORMEND NETWORKS Although random weight initialization is effective in many settings, it sacrifices the prior that the raw fine-tuning gradient is a useful starting point for editing. Our ablations show that it also leads to less effective edits. For this reason, we initialize MEND to the identity function using a residual connection (He et al., 2016) and a partially random, partially zero-initialization strategy related to Fixup (Zhang et al., 2019). Referring back to Eqs. 3a,b,U 1 andU 2 are initialized with zeros, and V 1 andV 2 use standard Xavier uniform initialization (Glorot and Bengio, 2010) (also see Figure 2). Beyond the initialization, input scaling also presents a challenge: inputs to a MEND network (u ` andδ `+1 ) can differ in magnitude by several orders of magnitude. This poor conditioning causes training to be slow and edit performance to suffer (see Section 5.4). Input normalization addresses this issue; we normalize each dimension of bothu ` andδ `+1 . The input tog ` is the concatenation of Ěu ` =norm(u ` )and Ě Î´ `+1 =norm(δ `+1 ), where Ěu ` and Ě Î´ `+1 are normalized to have zero mean and unit variance, with means and variances computed over the edit train set and the sequence index. BEXTENDEDDISCUSSION OFRELATEDWORK Model editing shares with continual learning (McCloskey and Cohen, 1989; Parisi et al., 2019) the goal of assimilating or updating a modelâs behavior without forgetting old information or behaviors, commonly known as the problem of catastrophic forgetting (McCloskey and Cohen, 1989; Ratcliff, 1990; Kirkpatrick et al., 2017). However, in continual learning settings, a model is typically expected to learn wholly new behaviors or datasets (Kirkpatrick et al., 2017; Parisi et al., 2019) without forgetting, while in this work we consider more localized model edits. Further, continual learning generally considers long sequences of model updates with minimal memory overhead, while our work generally considers an edit or batch of edits applied all at once. Additionally, min-norm parameter fine-tuning has also been considered in past work in the context of editing (Zhu et al., 2020) and traditional model fine-tuning (Guo et al., 2021), where the parameters of the edited or fine-tuned modelθ Ⲡare penalized (or constrained) from drifting too far from the original model parametersθusing various norms, including L0, L2, and L-â. While min-norm constraints may be an effective regularization for traditional fine-tuning settings where fine-tuning data is abundant, the experiments conducted in De Cao et al. (2021) show that parameter-space norm constraints are insufficient constraints to prevent significant model degradation when fine-tuning on a single edit example. B.1EDITABLENEURALNETWORKS(ENN) Editable neural networks (Sinitsin et al., 2020) search for a set of model parameters that both provide good performance for a âbase taskâ (e.g., image classification or machine translation) and enable rapid editing by gradient descent to update the modelâs predictions for a set of âedit examplesâ without changing the modelâs behavior for unrelated inputs. ENN optimizes the following objective, based on the MAML algorithm (Finn et al., 2017): L ENN (θ,D base ,D edit ,D loc ) =L base (D base ,θ) +c edit ¡L edit (D edit ,θ Ⲡ) +c loc ¡L loc (D loc ,θ,θ Ⲡ).(5) The first term of Equation 5 is the base task loss; for a generative language model, we have L base (D base ,θ) =âlogp θ (D base )whereD base is a batch of training sequences.L base is the edit reliabilityloss, encouraging the model to significantly change its output for the edit examples in D edit . Finally,L loc is the editlocalityloss, which penalizes the edited modelθ Ⲡfor deviating from the predictions of the pre-edit modelθonD loc , data unrelated toD edit and sampled from the same distribution asD base . See Sinitsin et al. (2020) for a more detailed explanation of ENN training and alternative objectives forL edit andL loc . Comparing ENN and MEND.The key conceptual distinction between ENN and MEND is that ENN encodes editability into the parameters of the model itself (intrinsic editability), while MEND provides editability through a set of learned parameters that are independent from the model parameters (extrinsic editability). An advantage of ENN is that no new parameters are added in order to provide editability. However, this approach comes with several drawbacks. First, the MAML-based objective ENN optimizes is expensive, particularly in terms of memory consump- tion (see Figure 4). By further training the model parameters themselves, ENN cannot guarantee that the editable model it produces will make the same predictions as the original model. In order 15 Published as a conference paper at ICLR 2022 Figure 4: GPU VRAM consumptionfor training MEND, KE, and ENN in float32. MEND and KEâs memory consumption remain tractable for a single GPU (using2Ăbfloat16 memory usage (Wang and Kanwar, 2019) for T5-11B), while ENNâs memory usage increases much more rapidly, making it impractical to run on a single GPU. Values are computed without gradient checkpointing. Due to memory constraints, we could not estimate ENNâs memory usage for T5-11B or GPT-J. to approximately enforce this constraint during training, ENN must use an extra copy of the origi- nal base model to ensure that the editable modelâs predictive distribution does not differ too much from it. This incurs significant additional memory costs, particularly when training ENN for very large models, for which the parameters of the model alone occupy a significant amount of VRAM. Another cause for the significant VRAM consumption of ENN is the need to compute activations and gradients for the model parameters; even if we edit only the last layer, ENN trains the rest of the model so that the last layer gradient is productive, requiring activations and gradients to be computed for the entire model. On the other hand, extrinsic editors like MEND and KE do not require updat- ing the base model itself, thereby computing gradients for far fewer parameters. Future work might investigate approaches to reducing the memory consumption of ENN, although the requirement to retain a copy of the original model in order to enforce locality creates a relatively high lower bound on the amount of memory that ENN might use. Regardless of memory consumption, extrinsic editors have the potential advantage of being able to edit more than one model; in theory, we might amortize the cost of training MEND over several base models at once. On the other hand, intrinsic editability must by definition be re-learned separately for each base model. B.2KNOWLEDGEEDITOR(KE) De Cao et al. (2021) propose KNOWLEDGEEDITOR, a hypernetwork-based approach for editing the knowledge in language models. KE is an RNN that conditions explicitly on the input, incorrect output, and new desired label and outputs a maskm i , offsetb i , and a scalar scaling factorÎąto the gradientâ W i for several of the weight matrices in a transformer model, wherem i ,b i ,â W i âR dĂd for adĂdweight matrix. The update to the model isθ Ⲡ=θâÎą(m i â W i ) +b i . Because the weight matrices in state-of-the-art transformer models are very high-dimensional, the mask and offset output by KE are rank-1 to retain tractability. Comparing KE and MEND.KE more closely resembles MEND in that it is also an extrinsic model editor. However, while MEND directly maps model gradients into model edits, the KE model editor uses the raw edit example as an input, outputting a single rank-1 mask and rank-1 offset over the fine-tuning gradient. We hypothesize that the KE model faces several challenges that MEND avoids. First, mapping the edit example itself into a model updates requires a translation from the high-level modality of data examples into the very low-level modality of model parameter updates. Solving this translation requires making additional design decisions (e.g., how to feed the edit input and label into the editor, what architecture to use for the editor), the optimal design for which may vary across problems. Further, by not conditioning directly on the gradient, KE forgoes a rich source of information about which parameters of the model are most responsible for updating the modelâs outputs. In addition, by operating on the token-wise activations and gradients (i.e., the gradients are not summed over the sequence/batch, but are kept as per-sequence element activation and gradient vectors), MEND outputs a rank-1 model edit for each token in the input and output sequence. The final output of MEND is the sum of these, which has rank of order 10 or even 100, depending on the problem. In contrast, the KE editor outputs only a rank-1 gradient mask and rank-1 gradient offset, regardless of the information content of the edit example. This rank-1 constraint, irrespective of the size of the input, which we hypothesize causes KEâs failure to perform well for the Wikitext editing 16 Published as a conference paper at ICLR 2022 x e ,y e Nepal borders France.Yes x loc Belgium is made up of three re- gions. x Ⲡe ,y Ⲡe Nepal is bordered by France.Yes (a) FEVER fact-checking editing dataset exam- ple.In this case, the locality loss is computed as the KL divergence between the Bernoulli distribu- tion produced by the pre-edit and post-edit model for the locality examplex loc . x e Which continent is Mount Andrews on?South America x loc ,y loc To which fictional work does Dennis Rickman belong in?EastEnders x Ⲡe ,y Ⲡe In which continent is Mount Andrews located?South America (b) zsRE question-answering editing dataset example. Because computing the KL divergence of the model over all possible answers to the question is computationally expensive, we use the label (EastEnders) and compute the KL divergence between the pre- and post-edit model at each of these tokens as an approximation. Table 7: Editing data samplesfrom the FEVER fact-checking and zsRE question-answering editing datasets from De Cao et al. (2021).Bold textcorresponds to labels used for editing or approximating the locality constraint. task, which has significantly higher information content labels (10 tokens) than the FEVER or zsRE tasks. CEXPERIMENTALDETAILS For GPT and BERT-style models, all experiments edit the MLP weights in the last 3 transformer blocks (6 weight matrices total). For BART and T5-style models, all experiments edit the MLP weights in the last 2 transformer blocks in both the encoder and the decoder (8 weight matrices total). We found that editing MLP layers generally provides better editing performance (across algorithms) than editing attention layers. In line with past work (De Cao et al., 2021), all reported performance numbers are on the validation set. For all algorithms, we use early stopping to end training early if the validation lossL=c edit L e +L loc ) does not decrease for 20000 steps on a subset of 500 validation examples, with a maximum number of training steps of 500,000. We use a batch size of 10 (with gradient accumulation) and the seed 0 for all experiments. Tables 7 and 8 show examples from each dataset used in our experiments. C.1HYPERPARAMETERS Fine-tuning.The fine-tuning baselines use model-dependent learning rates, which we found im- portant in achieving good fine-tuning performance; using too large of a learning rate causes de- creased locality (increased model degradation), while a learning rate too small causes slow edits. We use edit learning rates of 5e-6 for GPT-Neo and GPT-J and 1e-4 for T5 models, and 1e-6 for the smaller models, aiming to complete edits in less than 100 fine-tuning steps (as in De Cao et al. (2021)). For the fine-tuning + KL-constraint baseline, we fine-tune on the lossc edit L e +L loc , using a smallerc edit than for the learned algorithms (1e-2 for all models except GPT-J, which required 1e-3). Larger values ofc edit provide little benefit from the locality loss. To computeL loc , we use a batch size of one new examplex loc from the full edit training setD tr edit at each time step. ENN.We use an initial inner loop learning rate of 1e-2, but allow this value to be learned in the outer loop, which we find improves performance over the fixed inner loop learning rate version in Sinitsin et al. (2020). For all experiments, ENN fine-tunes all model parameters during training (even when we only edit the last few layers). We also use only a single inner loop update step for computational reasons, which differs from the multi-step version used for the smaller models used by Sinitsin et al. (2020). Our edit loss is also a slight simplification of the edit loss used by Sinitsin et al. (2020), which is l e (θ) =âlogp θ (y e |x e ,θ) + max y i logp θ (y i |x e ,θ)(6) The first term of this loss is the edit loss we use in our work; the second term is primarily intended to provide the property thatl e (θ)â¤0when an edit is successful so that the iterative editing process can be stopped. However, in this work, because we use only a single gradient step of editing for 17 Published as a conference paper at ICLR 2022 ENN, this property is less important, and the second term simply amounts to an additional emphasis on pushing down specifically the largest incorrect logit (which the first term already does implicitly). KEWe use the implementation of KE provided by De Cao et al. (2021), which can be found at https://github.com/nicola-decao/KnowledgeEditor, with minor changes to the computation of the KL constraint for consistency with other algorithms (see below). We use a learning rate of 1e-5. C.2COMPUTING THE LOCALITY CONSTRAINT Computing the true KL-divergence between the pre- and post-edit model KL(p θ (¡|x loc )âp θ Ⲡ(¡|x loc )) quickly becomes computationally prohibitive for model outputs of more than a few tokens, re- quiring marginalization over possible answers. We therefore approximate this KL-divergence using samples from the dataset. 6 For the seq2seq question-answering problem, we eval- uate the KL divergence only at the tokens of the answery loc , giving KL seq2seq approx (θ,θ Ⲡ) = 1 |y loc | â |y loc | i=1 KL(p θ (¡|x loc ,y <i loc )âp θ Ⲡ(¡|x loc ,y <i loc )), wherep(¡|x loc ,y <i loc )is the distribution over next to- kensy i given the locality inputx loc and the label tokens for previous timestepsy <i loc . Similarly, for the Wikitext setting, we define KL auto approx (θ,θ Ⲡ) = 1 |x loc | â |x loc | i=1 KL(p θ (¡|x <i loc )âp θ Ⲡ(¡|x <i loc )). For FEVER fact-checking we compute the exact KL-divergence between Bernoulli distributions in closed form. C.3ENVIRONMENTDETAILS All runs are trained entirely on a single NVIDIA RTX Titan or A40 GPU. No gradient checkpointing or memory-reduction optimizations are used, although bfloat16 is used to fit the largest T5 model onto our GPU. In full precision, the parameters alone of the T5-11B model use all of the memory of our largest GPU. VRAM consumption for training MEND and KE on T5-11B (Figs. 3 and 4) is estimated by doubling the bfloat16 VRAM usage (Wang and Kanwar, 2019). While doubling half precision enabled estimating the memory consumption of ENN, we were unable to train ENN in half precision without numerical instability. All models are based on Huggingface Transformers im- plementations (Wolf et al., 2019) with some modifications in line with De Cao et al. (2021). We use PyTorch (Paszke et al., 2019) for all experiments, specifically using the Higher library (Grefenstette et al., 2019) in order to implement the bi-level optimization in ENN as well as the inner loop of model editing for all algorithms. C.4DATASETCONSTRUCTION& EXAMPLES Datasets are constructed to provide pairs of edit inputx e and plausible edit labely e . The edit label is not necessarily the âcorrectâ label; the goal is to provide realistic instances of thetypesof data we would expect to see during test. For example, our dataset might have a sample such asx e =Where was Ursula K. Le Guin born?andy e =Addis Ababa, Oromia, Ethiopia, even though Ursula K. Le Guin was born in Berkeley, California, USA. However, this fictitious example is still a useful assessment of our modelâs ability to perform the general type of edit of âchange a personâs birthplaceâ. For the zsRE question-answering dataset De Cao et al. (2021) generate fictitiousy e in this manner using the top predictions of a BART model fine-tuned on the task of question answering followed by manual human filtering. In practice, this produces alternate edit labels that are plausible and whose types match with the original label. For FEVER fact-checking, there are only two choices for labels, and we sample edit targets 1 and 0 with equal probability. For Wikitext generation, we use a distilGPT-2 model to generate plausible 10-token continuations for a given Wikitext prefix, with the similar motivation to zsRE of providing edit targets that share the structure of the types of edits that we will apply in practice, even if they are not always factual. When qualitatively assessing MEND to correct real errors of the base model using the factual labels, we find that MEND performs reliably, indicating that these label generators provide reasonable proxies for ârealâ model edits. 6 We justify this choice by the fact that the modelâs predictive distribution is similar to the locality sample distribution (as locality samples are drawn from the dataset the model was originally trained on). While this is not as principled as a true Monte Carlo estimate using samples from the model itself, it is reduces computational requirements of training and is easier to implement; the generally low drawdown for most models indicates that this approximation still provides a good locality constraint in practice. 18 Published as a conference paper at ICLR 2022 x e ,y e Saprang was considered one of the top contenders to lead the army and the junta af- ter CNS leader Sonthi Boonyaratkalinâs mandatory retirement in 2007. However, in September 2007 he was demoted to be Deputy Permanent Secretary of the Defense Ministry, while his rival, General Anupong Paochinda, was promotedto Deputy At- torney General. Later, he was replaced x loc In 1663 Scottish mathematician James Gregory had suggested in his Optica Promota that observations of a transit of the planet Mercury, at widely spaced points on the surface of the Earth, could be used to calculate the solar parallax and hence the as- tronomical unit using triangulation. Aware of this, a young Edmond Halley made observations of such a transit on 28 October O.S. 1677 from Saint Helena but was disappointed to find that only Richard Towneley in Burnley, Lancashire had made another accurate observation of the event whilst Gallet, at Avignon, simply recorded that it had occurred. Halley was not satisfied that the resulting calculation of the solar parallax at 45 " was accurate. x Ⲡe ,y Ⲡe However, in September 2007 he was demoted to be Deputy Permanent Secretary of the Defense Ministry, while his rival, General Anupong Paochinda, was promotedto Deputy Attorney General. Later, he was replaced Table 8: Training set example from the Wikitext editing dataset.Bolded text corresponds to the edit labels y e andy Ⲡe . The locality examplex loc is used to constrain the pre- and post-edit modelâs predictive distributions to be similar at foreverytoken in the sequence. DRANK-1GRADIENT FORMLPS In the simplified case of an MLP and a batch size of 1, we describe the rank-1 gradient of the loss Lwith respect to the layer`weight matrixW ` . We define the inputs to layer`asu ` and thepre- activationinputs to layer`+ 1asz `+1 =W ` u ` . We defineδ `+1 as the gradient ofLwith respect to z `+1 (we assume thatδ `+1 is pre-computed, as a result of standard backpropagation). We will show that the gradient of the lossLwith respect toW ` is equal toδ `+1 u > ` . By the chain rule, the derivative of the loss with respect to weightW ij ` is equal to âL âW ij ` = â k âL âz k `+1 âz k `+1 âW ij ` = âL âz i `+1 âz i `+1 âW ij ` (7) the product of the derivative ofLwith respect to next-layer pre-activationsz i `+1 and the derivative of next-layer pre-activationsz i `+1 with respect toW ij . The second equality is due to the fact that âz k `+1 âW ij ` = 0fork6=i. Noting thatz i `+1 = â j u j ` W ij ` , we can replace âz i `+1 âW ij ` with simplyu j ` in Equation 7. Further, we definedδ `+1 to be exactly âL âz i `+1 . Making these two substitutions, we have âL âW ij ` =δ i `+1 u j ` (8) or, in vector notation,â W ` L=δ `+1 u > ` , which is the original identity we set out to prove. EEDITING ATTENTION PARAMETERS Our experiments edit weights in the MLP layers of large transformers. Here, Table 9 shows the results of editing the attention layers, rather than MLP layers, observing that editing attention lay- ers generally leads to reduced performance compared to editing MLP layers. For this comparison, we edit the same transformer blocks as for our main editing experiment in Table 3, but we edit the query/key/value/output matrices for each block instead of the two MLP matrices. The observa- tion that editing MLP layers is more effective generally aligns with past work (Geva et al., 2021) suggesting that the MLP layers in Transformer architectures store human-interpretable, high-level concepts in the later layers of the model, motivating our choice of editing these layers in our original experiments. Further, we hypothesize that the improved effectiveness of editing MLP layers may simply be based on the fact that they make up a large majority of model parameters, as the MLP hidden state is often much higher-dimensional than the modelâs hidden state. 19 Published as a conference paper at ICLR 2022 Wikitext GenerationzsRE Question-Answering GPT-Neo (2.7B)GPT-J (6B)T5-XL (2.8B)T5-XXL (11B) EditorESâppl. DâESâppl. DâESâacc. DâESâacc. Dâ MEND-attention0.730.0680.540.1220.630.0010.78< 0.001 MEND-mlp (Tab. 3)0.810.0570.880.0310.880.0010.89< 0.001 Table 9: Editing attention matricesrather than MLP/feedforward parameters for the models considered in Table 3. Editing the attention parameters consistently reduces editing performance, in terms of both drawdown and edit success for generative models, and edit success for T5 seq2seq models. InputPre-Edit OutputEdit Target Post-Edit Output 1a:Who is the president of the USA?Donald Trump7Joe BidenJoe Biden3 1b: Who is the US president?David Rice Atchison7-Joe Biden3 1c: Who is the president of France?Emmanuel Macron3-Emmanuel Macron3 2a:Who designed the Burj Khalifa?British architect Herbert Baker7 Skidmore, Owings & Merrill Skidmore, Owings & Merrill3 2b: Who designed the Eiffel Tower?Alexandre Gustave Eiffel3 -Alexandre Gustave Eiffel3 2c: Who designed the Empire State Building? Shreve, Lamb and Harmon3 -Shreve, Lamb and Harmon3 2d: Who designed the Sydney Opera House? Jrn Oberg Utzon3-Jrn Oberg Utzon â 3 2e: What firm was behind the design for the Burj Khalifa? McKim, Mead & White7 -Skidmore, Owings & Merrill3 2f: What firm did the Burj Khalifa?Jumeirah Group7-Jumeirah Group7 3a:What car company makes the Astra?Mahindra7OpelOpel3 3b: What car company makes the Mustang?Ford3-Ford3 3c: What car company makes the Model S?Tesla Motors3-Tesla3 3d: What car company makes the Wrangler? Jeep3-Jeep3 3e: What car company makes the F-150?Ford3-Opel7 3f: What car company makes the Golf?Volkswagen AG3-Opel7 4a:What artist recorded Thriller?Madonna7Michael Jackson Michael Jackson3 4b: What artist recorded Dark Side of the Moon? Pink Floyd3-Pink Floyd3 4c: What artist recorded Bridge over Troubled Water? Simon & Garfunkel3-Simon & Garfunkel 3 4d: What artist recorded Hotel California?Don Henley?-Don Henley? 4e: What band recorded Back in Black?AC/DC3-Michael Jackson7 Table 10: Additional examples of using MENDto edit a 770M parameter T5-large model fine-tuned on Natural Questions (NQ; Kwiatkowski et al. (2019)). Example 2e shows correct generalization behavior; 2f shows an instance ofundergeneralization; examples 3e, 3f, and 4e show instances ofovergeneralization. â We count this as correct although the token ø is not generated correctly (Jørn Oberg Utzon is the correct answer). 20 Published as a conference paper at ICLR 2022 FEVERzsREzsRE-hardWikitext BERT-baseBART-baseBART-basedistilGPT-2 EditorESâacc. DâESâacc. DâESâppl. DâESâppl. Dâ MEND> 0.99< 0.0010.980.0020.66< 0.0010.860.225 Cache ( â )0.96< 0.001> 0.990.0020.320.0020.0010.211 Cache ( 1 2 â )0.70< 0.0010.70< 0.001â< 0.0010.037 Cache (2 â )> 0.990.2501.000.220â0.0022.770 Table 11: Comparing MEND with a caching-based approach to editing.For purposes of the comparison, the caching hidden-state similarity threshold â is the one that gives similar drawdown to MEND. We found â to be6.5,3,2.5for FEVER, zsRE, and Wikitext, respectively.Top half.Caching gives slightly better performance for zsRE, slightly worse performance for FEVER, and total failure for Wikitext editing, likely owing to the longer, more complex contexts in the Wikitext data.Bottom half.Caching is relatively sensitive to the chosen threshold, which needs to be tuned separately for each new task. FADDITIONALQUALITATIVEEXAMPLES OFMEND We provide additional qualitative examples of using MEND to edit a larger 770M parameter T5-large model (Roberts et al., 2020) in Table 10. These examples include an instance ofundergeneraliza- tion, in which the edit exampleâs output is correctly edited, but other examples in the equivalence neighborhood of the edit example do not change (see 2f in Table 10)). In addition, we highlight the failure case ofovergeneralization, in which the modelâs post-edit output for superficially sim- ilar but semantically distinct inputs is also the edit target; for example 3e, 3f, and 4e in Table 10. Mitigating these failure cases for model editors (ensuring is an important priority for future work, GEDITING THROUGHCACHING Another simple approach to editing might be to cache the final layer hidden statez e (averaged over the sequence length) of the edit examplex e and the tokens of the corresponding edit labely e . After an edit is performed, if the model receives a new inputxwhose final layer hidden statezis close toz e (i.e.âzâz e â 2 < ), then the model outputsy e instead of its normal prediction. Here, we show that this approach is effective for editing problems with simpler inputs (zsRE question- answering, FEVER fact-checking), where inputs are typically short, simple phrases with one subject, one relation, and one object, but fails completely on the Wikitext editing problem, where contexts are typically 10x as long, with diverse passages containing significant amounts of extraneous text and âdistractingâ information. The results are presented in Table 11. We include the âoptimalâ threshold â (the threshold that achieves similar drawdown to MEND), as well as the result of using2 â and 1 2 â . We observe that the caching approach is fairly sensitive to the threshold hyperparameter, and a threshold that works well for one task may not work well for others. For zsRE question answering,zis computed as the average hidden state of the question tokens; for FEVER fact-checking,zis the average hidden state of the fact statement tokens. For generative modeling, when predicting the token at time stept, we computez t as the average hidden state for all previously seen tokens< t. In order to compute perplexity for the caching approach, we output one- hot logits corresponding toy e . We experimented with scaling the one-hot logit by different factors, but found scaling by1to work well; scaling corresponds to changing the modelâs confidence in its edit prediction but doesnât change the prediction itself or the edit success. 21