Simmonstt commited on
Commit
c2b8f5f
·
verified ·
1 Parent(s): b905d51

Add arXiv paper link, model card, and citation (2605.13059)

Browse files
Files changed (1) hide show
  1. README.md +56 -0
README.md CHANGED
@@ -5,5 +5,61 @@ tags:
5
  - mri
6
  - pet
7
  - brain-image-analysis
 
 
8
  arxiv: 2605.13059
9
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  - mri
6
  - pet
7
  - brain-image-analysis
8
+ - multimodal
9
+ - alzheimer
10
  arxiv: 2605.13059
11
  ---
12
+
13
+ # BrainAnytime Checkpoints
14
+
15
+ Finetuned checkpoints for **BrainAnytime: Anatomy-Aware Cross-Modal Pretraining for Brain Image Analysis with Arbitrary Modality Availability**.
16
+
17
+ ## Paper
18
+
19
+ - **Title:** BrainAnytime: Anatomy-Aware Cross-Modal Pretraining for Brain Image Analysis with Arbitrary Modality Availability
20
+ - **arXiv:** [2605.13059](https://arxiv.org/abs/2605.13059)
21
+ - **PDF:** [https://arxiv.org/pdf/2605.13059](https://arxiv.org/pdf/2605.13059)
22
+
23
+ ## Model Sources
24
+
25
+ - **Repository:** https://github.com/guangqianyang/BrainAnytime
26
+ - **Paper:** https://arxiv.org/abs/2605.13059
27
+ - **Demo:** https://huggingface.co/spaces/Simmonstt/BrainAnytime-Demo
28
+
29
+ ## Checkpoints
30
+
31
+ | File | Task | Type |
32
+ |------|------|------|
33
+ | `CN_vs_AD_seed_0_best.pth` | CN vs AD | Classification |
34
+ | `CN_vs_MCI_seed_0_best.pth` | CN vs MCI | Classification |
35
+ | `MMSE_seed_0_best.pth` | MMSE | Regression |
36
+ | `AGE_seed_0_best.pth` | AGE | Regression |
37
+
38
+ ## Usage
39
+
40
+ ```python
41
+ from huggingface_hub import hf_hub_download
42
+
43
+ ckpt = hf_hub_download(
44
+ repo_id="Simmonstt/BrainAnytime",
45
+ filename="CN_vs_AD_seed_0_best.pth",
46
+ )
47
+ ```
48
+
49
+ ## Citation
50
+
51
+ If you use these checkpoints, please cite:
52
+
53
+ ```bibtex
54
+ @misc{yang2026brainanytimeanatomyawarecrossmodalpretraining,
55
+ title={BrainAnytime: Anatomy-Aware Cross-Modal Pretraining for Brain Image Analysis with Arbitrary Modality Availability},
56
+ author={Guangqian Yang and Tong Ding and Wenlong Hou and Yue Xun and Ye Du and Qian Niu and Shujun Wang},
57
+ year={2026},
58
+ eprint={2605.13059},
59
+ archivePrefix={arXiv},
60
+ primaryClass={cs.CV},
61
+ url={https://arxiv.org/abs/2605.13059},
62
+ }
63
+ ```
64
+
65
+ Paper page: https://arxiv.org/abs/2605.13059