Update README.md
Browse files
README.md
CHANGED
|
@@ -1,44 +1,7 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-nc-4.0
|
| 3 |
---
|
| 4 |
-
### CT-Scroll: A Global-Local Attention Model for 3D Chest CT Volumes 🩺👨🏻⚕️
|
| 5 |
-
Official hub for the paper "Imitating Radiological Scrolling: A Global-Local Attention Model for 3D Chest CT Volumes Multi-Label Anomaly Classification".
|
| 6 |
-
|
| 7 |
-
Paper accepted for [MIDL](https://www.midl.io/) 2025 : [arXiv submission](https://arxiv.org/abs/2503.20652)
|
| 8 |
-
|
| 9 |
-
## Method Overview
|
| 10 |
-
|
| 11 |
-
The CT-Scroll architecture consists of three main components. (1) Axial slices of the volume are grouped into triplets and processed by a ResNet followed by a GAP layer, producing a vector representation per triplet. (2) The Scrolling Block then refines these embedded visual tokens using both global and local attention mechanisms. (3) Finally, the aggregated representations are fed into a classification head to predict anomalies.
|
| 12 |
-
|
| 13 |
-
<img src="./figures/method_overview.png" width="1000">
|
| 14 |
-
|
| 15 |
-
## Clone the Repository
|
| 16 |
-
|
| 17 |
-
To clone this repository, use the following command:
|
| 18 |
-
|
| 19 |
-
```bash
|
| 20 |
-
git clone https://huggingface.co/theodp/ct-scroll
|
| 21 |
-
```
|
| 22 |
|
| 23 |
## Code repository
|
| 24 |
|
| 25 |
The project source code can be found [here](https://github.com/theodpzz/ct-scroll).
|
| 26 |
-
|
| 27 |
-
## Acknowledgments
|
| 28 |
-
|
| 29 |
-
We acknowledge [Hamamci et al. 2024](http://arxiv.org/abs/2403.17834) for making the [CT-RATE dataset](https://huggingface.co/datasets/ibrahimhamamci/CT-RATE) available, and [Draelos et al. 2021](https://www.sciencedirect.com/science/article/pii/S1361841520302218) for making the [Rad-ChestCT dataset](https://zenodo.org/records/6406114) available. We would like to express our gratitude to [CT-CLIP GitHub repository](https://github.com/ibrahimethemhamamci/CT-CLIP) for providing a codebase that served as a foundation for this project.
|
| 30 |
-
|
| 31 |
-
## Citation
|
| 32 |
-
|
| 33 |
-
> [!IMPORTANT]
|
| 34 |
-
> This project is based on the work by Di Piazza et al. If you use this code in your research, please cite the following paper:
|
| 35 |
-
|
| 36 |
-
```BibTeX
|
| 37 |
-
@inproceedings{dpzz2025ctscroll,
|
| 38 |
-
author = {Di Piazza Theo, Carole Lazarus, Olivier Nempont and Loic Boussel},
|
| 39 |
-
title = {Imitating Radiological Scrolling: A Global-Local Attention Model for 3D Chest CT Volumes Multi-Label Anomaly Classification},
|
| 40 |
-
booktitle = {Proceedings of Medical Imaging with Deep Learning (MIDL)},
|
| 41 |
-
year = {2025},
|
| 42 |
-
organization = {MIDL},
|
| 43 |
-
}
|
| 44 |
-
```
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-nc-4.0
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
|
| 5 |
## Code repository
|
| 6 |
|
| 7 |
The project source code can be found [here](https://github.com/theodpzz/ct-scroll).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|