TL;DR
Graph transformers face a problem where global self-attention leads to non-negative, mass-conserving outputs, causing issues like over-smoothing. A new method called Capacity-Controlled Global Attention was developed to address this constraint.
✦ Why It Matters
Engineers can implement Capacity-Controlled Global Attention to improve graph transformer performance in deep learning tasks.
Key Takeaways
How It Works
SigGate-GT employs a learned sigmoid gate that adjusts attention outputs based on input conditions. This gating mechanism allows certain outputs to approach zero, effectively relaxing the strict conservation constraint of traditional attention mechanisms.
By doing so, it enhances the diversity of node representations and stabilizes training, addressing common issues faced in deep graph transformers.
Related