Views
No views yet
| Task | Goal | Input | Output |
|---|---|---|---|
| Task 1 | Ultra-high field synthesis | 0.1T / 1.5T / 3T / 5T | 7T |
| Task 2 | Low-field enhancement | 0.1T | 1.5T / 3T / 5T / 7T |
| Task 3 | Any-to-any translation (single unified model) | Any field | Any field |
| Method | Paper | Tasks | # sub-tasks |
|---|---|---|---|
| CUT | Park et al., ECCV 2020 | 1, 2 | 24 |
| CycleGAN | Zhu et al., ICCV 2017 | 1, 2 | 24 |
| StarGAN v2 | Choi et al., CVPR 2020 | 3 | 1 |
pro_pretrained setting: unpaired pretrain on the retrospective split + paired fine-tune on the prospective split. This is the strongest baseline; ablation modes (pro_scratch, retro_scratch) are kept for internal use and are not released..
├── README.md
├── LICENSE
├── task1_<src>_to_7T_<modality>/
│ ├── cut/pro_pretrained/weights/checkpoint_epoch100.pth
│ └── cyclegan/pro_pretrained/weights/checkpoint_epoch100.pth
├── task2_0.1T_to_<tgt>_<modality>/
│ └── (same as task1)
└── task3_any_to_any_multimodal/
└── stargan_v2/pro_pretrained/weights/checkpoint_epoch50.pthTraining-time configs (config_actual.yaml) are intentionally not included. Use the config templates in the upstream Baseline repo and override the data paths for your own environment.
1from huggingface_hub import snapshot_download
2
3snapshot_download(
4 repo_id="mrixfields/MRIxFields2026-Baseline",
5 repo_type="model",
6 local_dir="./MRIxFields2026-Baseline",
7)1from huggingface_hub import hf_hub_download
2
3hf_hub_download(
4 repo_id="mrixfields/MRIxFields2026-Baseline",
5 filename="task1_0.1T_to_7T_T1W/cut/pro_pretrained/weights/checkpoint_epoch100.pth",
6 repo_type="model",
7)MRIxFields2026/Baseline.1@inproceedings{park2020cut,
2 title={Contrastive Learning for Unpaired Image-to-Image Translation},
3 author={Taesung Park and Alexei A. Efros and Richard Zhang and Jun-Yan Zhu},
4 booktitle={European Conference on Computer Vision (ECCV)},
5 year={2020}
6}
7
8@inproceedings{CycleGAN2017,
9 title={Unpaired Image-to-Image Translation using Cycle-Consistent Adversarial Networks},
10 author={Zhu, Jun-Yan and Park, Taesung and Isola, Phillip and Efros, Alexei A},
11 booktitle={IEEE International Conference on Computer Vision (ICCV)},
12 year={2017}
13}
14
15@inproceedings{choi2020starganv2,
16 title={StarGAN v2: Diverse Image Synthesis for Multiple Domains},
17 author={Yunjey Choi and Youngjung Uh and Jaejun Yoo and Jung-Woo Ha},
18 booktitle={IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
19 year={2020}
20}