Track: Track2; Team name: MISN_AY; Model: Bi-SCNN#387
Open
yusufm423 wants to merge 2 commits into
Open
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
This PR adds Bi-SCNN as a Track 2 simplicial neural network submission for the TDL Challenge 2026 using:
Bi-SCNN was introduced in:
Binarized Simplicial Convolutional Neural Networks
Yi Yan and Ercan E. Kuruoglu
https://arxiv.org/abs/2405.04098
Motivation
Bi-SCNN extends simplicial convolutional neural networks with a weighted binary-sign propagation mechanism.
The model operates on simplicial complexes and processes node-, edge-, and face-level signals through lower, upper, and harmonic Hodge components. Its main objective is to reduce the computational and memory cost of simplicial feature propagation while retaining information from higher-order structures.
The implementation follows the paper's layer equations and preserves the distinction between:
The sign operation is approximated using hard tanh, as described in the paper, so that the model can be trained using ordinary gradient-based optimization.
What is contributed
Added the Bi-SCNN backbone:
Added the Hydra configuration:
Added unit tests:
Added pipeline coverage:
Updated the official challenge evaluation notebook for:
Added the generated challenge results:
TopoBench integration
Bi-SCNN follows the TopoBench simplicial-backbone interface and accepts:
where
x_allcontains node-, edge-, and face-level features andlaplacian_allcontains the corresponding lower and upper Hodge operators.It returns a tuple of rank-specific embeddings:
with output shapes:
The implementation reuses the existing:
AllCellFeatureEncoder;SCCNNWrapper; andPropagateSignalDownreadout.Implementation details
For each simplicial rank, the backbone applies separate trainable matrices to the available:
The implementation follows the weighted binary-sign construction described in the paper:
Trainable matrices remain full precision; only feature propagation follows the binary-sign path.
Testing
The unit tests cover:
The pipeline test also runs
simplicial/biscnnend to end ongraph/MUTAG.Evaluation
The official challenge notebook was run across:
Summary of the best in-distribution results:
The best community-detection result was obtained for:
The best normalized triangle-counting result was obtained for:
The complete per-setting, per-seed, and OOD results are stored in:
Reproduction