Track: Track1; Team name: MISN_AY; Model: JacobiConv - #383
Open
yusufm423 wants to merge 4 commits into
Open
Conversation
|
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
Author
|
Could a maintainer please add the |
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 adds JacobiConv as a Track 1 GNN submission for the TDL Challenge 2026 using:
model=graph/jacobiconvJacobiConv was introduced in:
How Powerful are Spectral Graph Neural Networks?
Xiyuan Wang and Muhan Zhang
https://arxiv.org/abs/2205.11172v1
Reference implementation:
https://github.com/GraphPKU/JacobiConv
Motivation
JacobiConv is a lightweight spectral GNN that represents graph filters using a Jacobi polynomial basis.
Instead of repeatedly applying nonlinear message-passing layers, it builds higher-order graph signals through a polynomial recurrence and learns how to combine them. This avoids explicit eigendecomposition while still allowing flexible spectral filtering.
What is contributed
topobench/nn/backbones/graph/jacobiconv.pyconfigs/model/graph/jacobiconv.yamltest/nn/backbones/graph/test_jacobiconv.pytest/pipeline/test_pipeline.pygraph/jacobiconv2026_tdl_challenge/outputs/jacobiconv/results.jsonTopoBench integration
JacobiConv follows the standard TopoBench graph-backbone interface:
It returns node embeddings with shape:
The implementation reuses the existing:
AllCellFeatureEncoderGNNWrapperMLPReadoutTesting
The unit tests cover:
The pipeline test also runs
graph/jacobiconvend to end ongraph/MUTAG.Evaluation
The official challenge notebook was run across:
Summary:
The complete per-setting, per-seed, and OOD results are stored in:
2026_tdl_challenge/outputs/jacobiconv/results.jsonReproduction