## **The Experiment result on Figure 10**
We sincerely appreciate your insightful observations regarding the experiment in `Figure 10`. Thank you for pointing out the issue with the missing regular baseline. To address this and supplement our analysis, we have provided the original results of the Llama-2-70B aggregation experiment below. We will also revise our tables accordingly. Due to space constraints, we are only presenting the results for the 10 examples and 100 examples settings. We categorize the result into zero-shot and few-shot settings.
**Zero-shot**:
| | Regular | Avg. 10-examples | Avg. 100-examples | D&C 10-examples | D&C 100-examples |
| ----------------- | ------- | ---------------- | ----------------- | --------------- | ---------------- |
| Person-Occupation | 0.0 | 7.6 | 18.1 | 0.7 | 31.8 |
| Antonym | 0.1 | 61.0 | 63.1 | 51.7 | 64.5 |
| English-French | 0.3 | 35.7 | 34.1 | 26.7 | 46.9 |
| Product-Company | 0.1 | 11.0 | 17.5 | 32.9 | 34.2 |
**Few-shot**:
| | ICL baseline | Avg. 10-examples | Avg. 100-examples | D&C 10-examples | D&C 100-examples |
| ----------------- | ------------ | ---------------- | ----------------- | ---------------- | ---------------- |
| Person-Occupation | 70.4 | 68.7 | 71.1 | 48.0 | 72.6 |
| Antonym | 68.1 | 67.7 | 68.3 | 62.2 | 71.7 |
| English-French | 82.9 | 82.1 | 82.6 | 77.5 | 84.6 |
| Product-Company | 80.1 | 80.2 | 80.9 | 75.5 | 85.1 |
As shown in the few-shot results, our D&C aggregation performs worse than the ICL baseline and average aggregation when the number of aggregated examples is small. The primary reason for this is that the conquer stage relies on a limited number of examples (e.g., only 1-shot in the conquer stage of D&C aggregation, compared to 10-shot for average aggregation when using a total of 10 examples). This limitation prevents the model's ability to effectively compress information from the group-specific state vectors into the final D&C aggregated state vector. However, as the number of examples increases, the performance of D&C aggregation improves significantly. At the 100-example setting, it outperforms the ICL baseline across four datasets (**with improvements of 2.2 on Person-Occupation, 3.6 on Antonym, 1.7 on English-French, and 5.0 on Product-Company**). Additionally, in the experiments shown in `Figure 2`, our method also achieves notable improvements (**ranging from 1.4 to 11.3 on Llama-2-7B and from 1.3 to 10.1 on GPT-J**). **We achieved similar improvements on the larger Llama-2-70B model as we did on the smaller Llama-2-7B model**, which demonstrates the effectiveness of our D&C aggregation method.
Regarding the average aggregation, we would like to emphasize that **we included the average aggregation as a straightforward and intuitive baseline instead of the proposed method (it's not our main contributions)**. Consistent with your observations, we also found that the averaging aggregation does not yield significant results on Llama-2-70B. We attribute this to the fact that the simple average method, while providing some improvement, is insufficient for state vector aggregation. In contrast, our proposed D&C aggregation surpasses average aggregation under the 100-shot setting, which shows that our method is more effective and offers greater improvement over average aggregation.
***
Thank you very much again for your thoughtful review and feedback. Please let us know if you have any further questions, as we are happy to continue the discussion.