Track: Track2; Team name: LoopCounter; Model: EHNN#366
Open
FoxHound0x00 wants to merge 1 commit into
Open
Conversation
Add EHNN (Kim et al., ECCV 2022 (arXiv:2208.10428)) as a Track-2 TNN backbone for the 2026 TDL Challenge, with config, unit tests (100% backbone coverage), a pipeline-test entry, and the GraphUniverse evaluation results.json.
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.
Add EHNN (Kim et al., ECCV 2022 (arXiv:2208.10428)) as a Track-2 TNN backbone for the 2026 TDL Challenge, with config, unit tests (100% backbone coverage), a pipeline-test entry, and the GraphUniverse evaluation results.json.
Checklist
Description
Track-2 (TNN) submission for the 2026 TDL Challenge — team LoopCounter.
Adds EHNN — Equivariant Hypergraph Neural Networks (Kim, Oh, Cho, Hong — ECCV 2022, arXiv:2208.10428; reference code jw9730/ehnn) as a hypergraph backbone.
Included:
topobench/nn/backbones/hypergraph/ehnn.py— the EHNN-Linear (MLP) variant: the V2E and E2V maximally-expressive equivariant aggregation blocks with order-conditioned positional hypernetworks, all derived from the incidence matrix and its hyperedge sizes / node degrees (Hᵀx / |e|and(x_v + H x_e)/(1+deg), plus global and order-conditioned bias terms).HypergraphWrapper(no new wrapper needed).configs/model/hypergraph/ehnn.yamltest/nn/backbones/hypergraph/test_ehnn.py— 100% backbone coverage; covers the operator cache, hyperedge-order clamping, sparse/dense incidence, and the building-block modules.hypergraph/ehnnadded totest/pipeline/test_pipeline.py.2026_tdl_challenge/outputs/.../results.json— full 12×3×2 GraphUniverse grid (community detection + triangle counting, in-distribution + OOD).Issue
N/A — this is a model contribution for the 2026 TDL Challenge (Track 2 /
track-2-tnn), not a bug fix.Additional context
The original input projection and MLP classifier head are provided by TopoBench's feature encoder and readout, so this backbone consumes pre-encoded node features and returns node embeddings (consistent with the existing EDGNN backbone).
results.jsonwas generated via the evaluation notebook's own functions (run_challenge_grid+save_challenge_artifacts), because the published2026_tdl_challenge/run_evaluation.ipynbcurrently fails its own SHA-256 integrity check onmain(embeddedexpected_hashf87b2c…≠ the actual hash3c1d78…of the locked cells) — happy to open a separate issue for that.