Summary
The paper proposes a Heterogeneous Mixture of Experts (MoE) model named TITAN for traffic flow prediction. The model addresses the limitations of existing sequence-centric traffic prediction models by incorporating variable-centric and prior knowledge-centric modeling techniques. TITAN consists of three sequence-centric experts, one variable-centric expert incorporated by low-rank adaptive matrices, and a leader expert to supervise routing decisions. An expert annealing strategy is further employed to gradually reduce supervision from the leader expert during training. Experiments on two public datasets, METR-LA and PEMS-BAY, demonstrate that TITAN outperforms state-of-the-art models in terms of prediction accuracy.
Strengths
1. **Meaningful Research Problem**: Though MoE has demonstrated extraordinary capacity in NLP and CV fields, its application in spatio-temporal (ST) problems is relatively underexplored. Therefore, the paper contributes to the understanding of MoE's potential in ST applications.
2. **Exploring from Important Aspects:** The paper explores heterogeneous expert design and stable routing strategies, which are crucial steps when applying MoE to spatio-temporal applications.
3. **Clarity in Writing**: The paper is fairly well-structured, with a clear explanation of the proposed model and its components, making it accessible for readers to understand the methodology and contributions.
Weaknesses
1. **Unclear Motivation**:
**a) Missing definitions:** The terms 'sequence-centric' and 'variable-centric' are mentioned multiple times, but their definitions are unclear. This lack of clarity makes it difficult to understand why existing models belong to differing categories and what specific limitations they have. For examples:
- The paper argues that models like GraphWaveNet cannot learn variable-centric representations. However, these models include cross-variable modeling through variable embeddings, raising questions about the necessity for an additional variable-centric approach. (Line 56-57).
- The paper states that weighted averaging of sequence-centric and variable-centric modeling is ineffective, but no concrete explanation is provided to support this claim. (Lines 61-62)
**b) Lack of Motivation for MoE Adoption**: The paper does not adequately explain why MoE is suitable for traffic prediction (Lines 63-72).
**c) Scope Mismatch**: A significant portion of the paper is dedicated to the limitations of spatio-temporal prediction approaches, yet the paper only focuses on traffic prediction.
2. **Insufficient Challenge Identification:** Suboptimal routing at the early stage of training, as mentioned in line 78, is a well-known issue with MoE models, and numerous solutions have been proposed over the years. As a paper aiming to adapt MoE to traffic prediction, there lacks in-depth thinking about domain-specific challenges, making the paper's contribution limited.
3. **Limited Method Novelty and Unclear Interpretation:**
**a) Sequence-centric design:** The sequence-centric experts used in this work are similar to previous approaches [1, 2]. However, the paper neither provides a clear motivation for using these experts nor highlights how they differ from homogeneous ST-MoE approaches [3]. In addition, the relevant refs [2, 3] are not cited or compared.
**b) Variable-centric design:** The variable-centric expert design closely resembles the ideas proposed in itransformer [4], which is not cited or compared. Moreover, itransformer was initially designed for time series forecasting, and it may not be well-suited for modeling dynamic spatial dependencies as discussed in [5].
**c) Gating network design:** The motivation for altering the classical sparse gating network into the proposed form in Eqn. (8) is not sufficiently explained. Furthermore, the paper suggests that relationships between nodes are often sparse in urban traffic flow forecasting (Lines 295-297), which contradicts Eqns. (3) and (4) that model global dependencies among all nodes.
4. **Insufficient experiment:**
**a) Unconvincing baselines results:** The paper simply copies the baselines results from ref [1]. Differences in computing resources and the absence of repeated experiments with varying random seeds cast doubt on the reliability of the results.
**b) Lack of in-depth comparison with homogeneous MoE models [3].**
**c) Concerns with the model efficiency:** MoE models are typically known for their efficiency, but TITAN falls short in this regard. As shown in Table 3, the inference time of TITAN is even longer than that of GWNet, raising concerns about its practical applicability.
## Reference
[1] Hyunwook Lee, et al. TESTAM- A Time-Enhanced Spatio-Temporal Attention Model with Mixture of Experts. ICLR2024.
[2] Wenzhao Jiang, et al. Interpretable Cascading Mixture-of-Experts for Urban Traffic Congestion Prediction. KDD 2024
[3] Shuhao Li, et al. ST-MoE: Spatio-Temporal Mixture-of-Experts for Debiasing in Traffic Prediction. CIKM 2023.
[4] Yong Liu, et al. iTransformer: Inverted Transformers Are Effective for Time Series Forecasting. ICLR 2024.
[5] Zezhi Shao, Exploring Progress in Multivariate Time Series Forecasting: Comprehensive Benchmarking and Heterogeneity Analysis. TKDE 2024.
Questions
1. In lines 246-247, you mention that 'all sequence-centric models share the same inductive bias, which limits the performance of the MoE model.' The three sequence-centric experts are heterogeneous with differing inductive biases. Furthermore, why does shared inductive bias constrain the performance?
2. In lines 250-252, you state that 'the variable-centric model does not share the same hidden state structure.' Could you provide evidence or a theoretical explanation for why this characteristic complicates control by the MoE routing mechanism?
3. How does the annealing routing method perform compared with other advanced MoE routing strategies?
4. How would TITAN likely perform in different spatio-temporal applications beyond those already tested in your study?