Track: Track1; Team name: TJPaik; Model: GFT#334
Open
TJPaik wants to merge 4 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
Adds a TDL Challenge 2026 Track 1 implementation for GFT (
model=graph/gft).Reference:
Implemented and verified:
MODEL_CONFIGset tograph/gftValidation:
PYENV_VERSION=TDL python -m pytest test/nn/backbones/graph/test_gft.py -q-> 20 passedPYENV_VERSION=TDL python -m pytest test/pipeline/test_pipeline.py -qwith baseline smoke models plusgraph/gft-> 1 passedtopobench/nn/backbones/graph/gft.py-> 99%model_config="graph/gft"-> all 24 configs passedresults.jsonstatus: committed at2026_tdl_challenge/outputs/gft/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/gft";run_evaluation.ipynbnow sets the sameMODEL_CONFIG.Issue
TDL Challenge 2026 Track 1 model submission for GFT.
Additional context
This submission implements a supervised TopoBench-compatible GFT core, not the full official cross-domain graph foundation training system. It intentionally excludes pretrained vocabulary assets, cross-domain pretraining, tree-reconstruction objectives, text/LLM features, reconstruction heads, and prototype task heads because those artifacts/interfaces are not available in the GraphUniverse challenge pipeline.
The transferable-tree-vocabulary mechanism is represented by an in-model vector-quantized computation-tree vocabulary trained under the supervised challenge objective, using dependency-free structural proxy descriptors. The optional
commitment_lossreturned byreturn_aux=Trueis diagnostic only in this PR; the standardGNNWrapperchallenge path optimizes the task loss only.