Category: B1 (Bonus); Team name: DLLB; Dataset: Reddit #231
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.
Co-authored-by: luka-benic luka121benic@gmail.com
Co-authored-by: dleko11 davidleko11@gmail.com
Checklist
Description
This PR introduces a complete on-disk data loading pipeline for transductive datasets, together with higher-order structure comparison utilities and integration with the memory profiling tools.
The goal is to enable scalable training on large graphs while preserving global topological information when using topological liftings.
Our solution is based on the Cluster-GCN algorithm proposed in Chiang et al., Cluster-GCN: An Efficient Algorithm for Training Deep and Large GNNs (KDD 2019). This approach is also used in PyTorch Geometric’s
ClusterDataimplementation.Key Contributions
1. Local Liftings Lose Global Structure
If liftings are applied inside each cluster independently, the following issues arise:
In short: lifting before batching destroys global higher-order structure.
2. Our Solution: Batch First, Lift Second
We redesigned the transductive pipeline to preserve global topology:
This enables:
We sweep two key parameters:
num_parts: number of METIS partitions,batch_size: number of partitions grouped before lifting.3. Structure Comparison Utilities
To quantify how much global information is preserved, we implement:
This allows us to rigorously evaluate how well the on-disk pipeline recovers global higher-order structures over time.
Testing & Validation
graph/coragraph/pubmedgraph/redditgraph/gcnhypergraph/edgnncell/topotunesimplicial/topotuneMemory behavior was verified using the profiling utilities, and the recall/convergence experiments were reproduced using the new sweep scripts.
Details are available in the
tutorial_on_disk_transductive_pipeline.ipynbnotebook.