We appreciate the reviewer's valuable comments and suggestions, which will help us improve our work.
> **Q1: resource consumption**
For detailed information about inference time, training time, and memory usage, please refer to our response to all reviewers. Our experimental results demonstrate the efficiency of our approach.
> **Q2: missing baselines**
Thank you for pointing out these missing in our paper. While we wanted to include these comparisons in our table, several technical constraints made this infeasible. First, MEMIT lacks an official implementation for Llama7b. The unofficial version requires an expensive co-invariant computation process for the Wikipedia dataset on the edited layer—our attempts to compute this ran for two days before hanging. For GPT2-XL, we used the official version (approximately 7.5GB) provided by the authors. Second, WISE is only officially implemented for LLama2-7b. Though we contacted the authors for a GPT2-XL implementation, they provided one but expressed uncertainty about its reliability. This uncertainty led us to omit WISE results for GPT2-XL. Based on our analysis, if the implementation is accurate, WISE would likely rank as the second-best tool for GPT2-XL.
> **Q3: out of distribution**
Thank you for your suggestions. Here are our out-of-distribution evaluation results based on the setup and dataset (75 records) provided by the WISE paper.
| Model | Rel | ood | Loc |
|------------|------|------|------|
| W/o edit | 0.69 | 0.38 | **1.0** |
| FT | 0.53 | 0.05 | 0.53 |
| Grace | 0.96 | 0.41 | 0.07 |
| WISE | **0.98** | **0.53** | **1.0** |
| UniAdapt | **0.98** | 0.41 | **1.0** |
It's not surprising that our implementation cannot outperform WISE. Our main focus was the routing algorithm, and with simple routing input, our implementation essentially functions as a LoRA adapter. The provided dataset favors WISE's implementation since WISE excels at memory storing rather than routing. In the dataset, routing inputs are short (around 5 words) and completely distinct from each other, allowing WISE's routing component to easily achieve 100% accuracy while focusing solely on storage. We acknowledge that our memory-storing component has limitations and considerable room for improvement.
> **Q4: addressing the knowledge conflicts**
Rather than directly addressing knowledge insertion conflicts in the model, we take another approach by introducing additional external memories (more experts) to store new knowledge instead of modifying the network parameters directly. As shown in Figure 3B, increasing the number of experts to 4 achieves the highest accuracy across rel, gen, and loc metrics. This suggests that adding more memories can help reduce potential conflicts.