Dataset Viewer
Auto-converted to Parquet
Search is not available for this dataset
image
imagewidth (px)
1.02k
2.46k
label
class label
2 classes
0assets
1docs
1docs
OTSurv Logo

OTSurv: A Novel Multiple Instance Learning Framework for Survival Prediction with Heterogeneity-aware Optimal Transport

🌟 MICCAI 2025 🌟


Qin Ren1 β˜…  Yifan Wang1  Ruogu Fang2  Haibin Ling1  Chenyu You1 β˜…

1 Stony Brook University    2 University of Florida   
β˜… Corresponding authors

Paper Hugging Face Model Hugging Face Dataset PyTorch 2.3

🧠 DL;TR

Welcome to the official repository of OTSurv, a novel framework that integrates Multiple Instance Learning (MIL) with Heterogeneity-aware Optimal Transport (OT) to tackle the challenges of survival prediction in medical imaging and clinical data.

πŸ“ To be presented at MICCAI 2025
🧠 Focus: Survival Analysis · Multiple Instance Learning · Optimal Transport
OTSurv Framework Overview

πŸ“ Data Organization

Project Structure

OTSurv/
β”œβ”€β”€ checkpoints/
β”‚   β”œβ”€β”€ model_blca_fold0.pth
β”‚   β”œβ”€β”€ model_blca_fold1.pth
β”‚   └── ...
β”‚ 
β”œβ”€β”€ data/
β”‚   β”œβ”€β”€ tcga_blca/
β”‚   β”œβ”€β”€ tcga_brca/
β”‚   β”œβ”€β”€ tcga_coadread/
β”‚   β”œβ”€β”€ tcga_kirc/
β”‚   β”œβ”€β”€ tcga_luad/
β”‚   └── tcga_stad/
β”‚ 
β”œβ”€β”€ result/
β”‚   β”œβ”€β”€ exp_otsurv_test/
β”‚   β”œβ”€β”€ exp_otsurv_train/
β”‚   └── visualization/
β”‚
β”œβ”€β”€ src/
β”‚   β”œβ”€β”€ scripts/
β”‚   β”œβ”€β”€ analysis/
β”‚   └── ...
β”‚
└── docs/
β”‚   β”œβ”€β”€ OTSurv_main.png
β”‚   └── OTSurv_heatmap.png

Feature Format

  • H5 Format: Features are stored in .h5 files (directories ending with feats_h5/)

For patch feature extraction, please refer to CLAM.

You can download the preprocessed features from this link.


πŸš€ Quick Start

Prerequisites

  • Python 3.8+
  • GPU or CPU-only
  • Conda package manager

Installation

# Clone the repository
git clone https://github.com/Y-Research-SBU/OTSurv.git
cd OTSurv

# Create conda environment
conda env create -f env.yaml
conda activate otsurv

Training

# Training results will be saved under result/exp_otsurv_train

cd src
# Train on all datasets
bash scripts/train_otsurv.sh

# Train on TCGA-BLCA dataset specifically
bash scripts/train_blca.sh

Evaluation

You can download all trained checkpoints from this link.

# Test results will be saved under result/exp_otsurv_test

cd src
# Test on all datasets
bash scripts/test_otsurv.sh

# Test on TCGA-BLCA dataset specifically
bash scripts/test_blca.sh
cd src
# Calculate performance metrics
python analysis/calculate_CIndex_mean_std.py
# Generated figures will be saved under result/visualization

cd src
# Generate survival curves
python analysis/plot_survival_curv.py

πŸ“Š Performance Results

Below are the C-Index performance results of OTSurv across different cancer types:

Cancer Type Mean C-Index Std Dev
BRCA 0.621 Β±0.071
BLCA 0.637 Β±0.065
LUAD 0.638 Β±0.077
STAD 0.565 Β±0.057
COADREAD 0.667 Β±0.111
KIRC 0.750 Β±0.149

Overall Performance: Average C-Index across all datasets is 0.646

πŸ’‘ Note: C-Index (Concordance Index) is a commonly used performance metric in survival analysis, where values closer to 1.0 indicate better prediction performance.


πŸ“š Citation

If you find this work useful, please cite our paper:

@misc{ren2025otsurvnovelmultipleinstance,
      title={OTSurv: A Novel Multiple Instance Learning Framework for Survival Prediction with Heterogeneity-aware Optimal Transport}, 
      author={Qin Ren and Yifan Wang and Ruogu Fang and Haibin Ling and Chenyu You},
      year={2025},
      eprint={2506.20741},
      archivePrefix={arXiv},
      primaryClass={cs.CV},
      url={https://arxiv.org/abs/2506.20741}, 
}

πŸ“ Note: This paper has been accepted at MICCAI 2025. The citation details will be updated once the paper is officially published.


πŸ™ Acknowledgements

This work builds upon the excellent research from:


πŸ“„ License

This project is licensed under the Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License - see the LICENSE.md file for details.


🀝 Contributing

We welcome contributions to OTSurv! If you have suggestions, bug reports, or want to add features or experiments, feel free to:

  • 🐞 Submit an issue
  • πŸ”§ Open a pull request
  • πŸ’¬ Start a discussion

⭐ If you find this repository helpful, please consider starring it! ⭐

Downloads last month
666