| """ |
| TD Fuse β Transport and Merge pipeline for Time Dilation project. |
| |
| Merges 5 different-architecture 7B models into Qwen3-8B using |
| optimal transport (Transport and Merge, arxiv 2602.05495). |
| |
| Architecture: |
| td_fuse/ |
| βββ __init__.py β This file |
| βββ config.py β Model configs, merge order, hyperparameters |
| βββ canary.py β Canary injection + testing ("brain surgery") |
| βββ transport.py β Wrapper around official T&M code |
| βββ techniques.py β Advanced techniques (Theseus, ARM, OTMF, RAM, Mergeability) |
| βββ merge.py β Sequential merge orchestrator |
| βββ validate.py β Post-merge validation (canary, perplexity, benchmarks) |
| βββ heal.py β QLoRA healing fine-tune via Unsloth |
| βββ run.py β Main entry point |
| |
| Usage: |
| python -m td_fuse.run --config default --stage all |
| python -m td_fuse.run --config default --stage demo # Dad demo (DeepSeek only) |
| """ |
|
|
| __version__ = "0.1.0" |
| __author__ = "Milan (TD Project)" |
|
|