Track: Track1; Team name: TJPaik; Model: Neural Sheaf Diffusion (NSD)#332
Open
TJPaik wants to merge 6 commits into
Open
Track: Track1; Team name: TJPaik; Model: Neural Sheaf Diffusion (NSD)#332TJPaik wants to merge 6 commits into
TJPaik wants to merge 6 commits into
Conversation
|
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
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
Updates the existing TopoBench Neural Sheaf Diffusion integration for TDL Challenge 2026 Track 1 compatibility (
model=graph/nsd), rather than introducing a new model from scratch.Reference:
Implemented and verified:
graph/nsddrequirements andhidden_dim % d == 0)CombinedPSEson scalar and list-valuednum_featuresMODEL_CONFIGset tograph/nsdValidation:
PYENV_VERSION=TDL python -m pytest test/nn/backbones/graph/test_nsd.py -q-> 56 passedPYENV_VERSION=TDL python -m pytest test/utils/test_config_resolvers.py -q-> 41 passedPYENV_VERSION=TDL python -m pytest test/pipeline/test_pipeline.py -qwith baseline smoke models plusgraph/nsd-> 1 passedtopobench/nn/backbones/graph/nsd.py-> 100%model_config="graph/nsd"-> all 24 configs exercised successfullyresults.jsonstatus: committed at2026_tdl_challenge/outputs/nsd/results.jsonwith 72 completed challenge runs across train seeds 42, 43, and 44.results.jsonprovenance: generated from the checked-in2026_tdl_challenge/utils.pyhelpers via CLI withmodel_config="graph/nsd";run_evaluation.ipynbnow sets the sameMODEL_CONFIG.Issue
TDL Challenge 2026 Track 1 model submission for Neural Sheaf Diffusion.
Additional context
Official
results.jsonartifact is included in this PR.This PR deliberately keeps the NSD adaptation close to the existing TopoBench NSD code path and makes it GraphUniverse-compatible: direct
Data/object inputs, self-loop removal plus undirected edge conversion, output-channel metadata, and the challenge default config.Limitation:
NSDEncoder.forwardacceptsedge_attrandedge_weightfor wrapper/API compatibility, but this NSD adaptation ignores them and builds the sheaf Laplacian fromedge_indexonly.Global resolver note:
graph/nsduses model-defaultCombinedPSEs(LapPE=10 and RWSE=10, both concatenated to node features). The sharedinfer_in_channelsupdate makes that +20 node-feature dimension apply consistently whendataset.parameters.num_featuresis list-valued as well as scalar; for example MUTAG[7, 4]resolves to[27], while GraphUniverse scalar15resolves to[35]. This keepsAllCellFeatureEncoderinput sizes aligned with transformedx_0. Targeted regression tests now composemodel=graph/nsdwithdataset=graph/MUTAGanddataset=graph/graphuniverse_inductive, checking the resolved input channels are[27]and[35], respectively.