Track: Track 2; Team: E(n)igma; Model: ETNN#320
Open
grvkhnl wants to merge 10 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.
Track
Track 2 - Topological Neural Networks
Team Name
E(n)igma
Model
E(n)-Equivariant Topological Neural Networks (ETNN)
Summary
This PR adds a TopoBench-compatible implementation of E(n)-Equivariant
Topological Neural Networks (ETNN) for the 2026 TDL Challenge.
The implementation focuses on the combinatorial-complex feature-update part of
ETNN. GraphUniverse datasets do not provide physical Euclidean coordinates, so
this submission intentionally implements a coordinate-free ETNN baseline over
TopoBench combinatorial neighborhoods. It preserves ETNN's typed cell-relation
message-passing structure while avoiding unsupported claims about physical
E(n)-equivariance on coordinate-free data.
A fuller design note is included in:
Reference
Paper:
Official implementation:
Implementation Notes
topobench/nn/backbones/combinatorial/etnn.py.configs/model/combinatorial/etnn.yaml.GraphTriangleInducedCCto lift graph datasets into rank-0, rank-1,and rank-2 combinatorial cells.
AllCellFeatureEncoder, the existing combinatorialTuneWrapper, andPropagateSignalDownreadout.receivers and columns as senders.
mini-batches.
Coordinate-Free Adaptation
The original ETNN contains both feature updates and coordinate updates. In this
GraphUniverse setting, physical coordinates are absent. This PR therefore
implements the ETNN feature-update mechanism over combinatorial-complex
neighborhoods, but omits coordinate-dependent geometric invariants and the
coordinate update.
This is documented directly in the backbone docstrings/comments, including the
mapping to the ETNN paper's message/update equations and the omitted coordinate
update.
Evaluation
The official GraphUniverse evaluation notebook completed all 72 runs.
Committed result:
Headline in-distribution metrics:
0.4534 +/- 0.13080.1213 +/- 0.1121Homophily slices:
0.3195 +/- 0.00450.4205 +/- 0.03160.6203 +/- 0.05840.0259 +/- 0.02890.1141 +/- 0.03940.2239 +/- 0.1251Tests
This PR includes coverage for:
graph/MUTAG.Local focused checks:
GitHub checks are passing as of the latest pushed commit.
Notes
track-2-tnn.provided to benchmark the implementation on the shared GraphUniverse tasks.
organizer guidance, so this PR remains focused on the stable coordinate-free
ETNN baseline.