Track: Track1; Team name: r2; Model: OptBasisGNN#336
Draft
aniervs wants to merge 1 commit into
Draft
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Checklist
Description
This PR contributes OptBasisGNN (Graph Neural Networks with Learnable and Optimal Polynomial Bases, Guo & Wei, ICML 2023 — arXiv:2302.12432) as a Track 1 (GNN) submission for the TDL Challenge 2026, operating on the graph domain.
OptBasisGNN is a spectral polynomial-filter GNN. It computes the optimal orthonormal polynomial basis that minimizes the filter's optimisation condition number, via an implicit three-term recurrence that never requires eigendecomposition. The only learnable parameters in the backbone are the per-channel combination coefficients
α; feature transformation and readout are the standard TopoBench encoder/readout.Files (planned)
topobench/nn/backbones/graph/optbasis.py: theOptBasisGNNbackbone.configs/model/graph/optbasis.yamltest/nn/backbones/graph/test_optbasis.py: unit tests.test/pipeline/test_pipeline.py: set toMODELS = ["graph/optbasis"].Integration No new wrapper, encoder, or readout is needed: the backbone follows the standard graph contract
forward(x, edge_index, batch=None, edge_weight=None). It is a single decoupled filtering block of polynomial orderK(depth =Kpropagation hops), not a stack of L message-passing layers.Complexity.
O(K·|E| + K·|V|)time (K sparse shifts + two-vector orthogonalisation per hop),O(|E| + |V|·hidden)memory.Issue
This is a TDL Challenge 2026, Track 1 model submission. OptBasisGNN adds the learnable/optimal spectral-filter family to TopoBench (currently absent from the graph backbones), and is directly relevant to the challenge's structural-sensitivity questions: spectral filters adapt their low/high-pass response across the homophily/heterophily axis that GraphUniverse sweeps.
Additional context