Common Response
**[LoCALPFN is a parallel work]**
**Please Read:** Thank you very much for your thorough efforts reviewing our paper and its related works! According to ICLR policy, MixturePFN and LoCALPFN are contemporaneous: *“We consider papers contemporaneous if they are published within the last four months. That means, since our full paper deadline is October 1, if a paper was published (i.e., at a peer-reviewed venue) on or after July 1, 2024, authors are not required to compare their own work to that paper.”*.
In fact, MixturePFN was the first to post on arXiv. Here is a detailed timeline:
- MixturePFN was posted on arXiv in May 2024, proposing MoE KNN and finetuning.
- LoCALPFN was posted on arXiv in June 2024, proposing KNN retrieval and finetuning.
- MixturePFN was submitted to ICLR on October 1 2024.
- LoCALPFN (camera-ready) was accepted to NeurIPS on October 30 2024. After discussing with the authors of LoCALPFN, we both agree our papers are contemporaneous.
We hope our timeline gives a better perspective on the relationship between MixturePFN and LoCALPFN. Although we are *not required to*, we still provide a design and empirical comparison with LoCALPFN for completeness in the next section.
**[Comparison with LoCALPFN]**
Compared to LoCALPFN, which finetunes a single TabPFN model for retrieval, MixturePFN finetunes a specialized expert on each subset of the training/context data, improving effectiveness. Hence, LoCALPFN is a specific instance of MixturePFN: when gamma=inf and there is only one expert.
Because LoCALPFN does not release source code or performance on individual datasets (at the time of this rebuttal), we reimplement LoCALPFN† under our framework by setting gamma=inf (i.e. KNN retrieval) and limiting the number of experts. We compute average accuracy across several datasets: electricity, phoneme, and airlines.
```
Model Name | max experts | gamma | elec. Acc | phon. Acc | air. Acc
------------+-------------+--------+-----------+-----------+----------
TabPFN* | no finetune | no KNN | 81.2% | 88.3% | 60.0%
LoCALPFN† | 1 | inf | 85.4% | 88.7% | 64.0%
MixturePFN† | 1 | 5 | 85.6% | 88.5% | 64.3%
MixturePFN† | 8 | 5 | 88.0% | 89.1% | 64.9%
MixturePFN | 1024 | 5 | 89.7% | 90.2% | 85.7%
```
As seen above, MixturePFN outperforms both TabPFN and LoCALPFN by training a specialized expert on each subset of the training dataset. The more experts that are trained, the better the performance.