Skip to content
/ SODEN Public

SODEN: A Scalable Continuous-Time Survival Model through Ordinary Differential Equation Networks

License

Notifications You must be signed in to change notification settings

jiaqima/SODEN

Repository files navigation

SODEN

This repo provides a pytorch implementation for the proposed model, SODEN, in the following paper:

SODEN: A Scalable Continuous-Time Survival Model through Ordinary Differential Equation Networks

Weijing Tang*, Jiaqi Ma*, Qiaozhu Mei, and Ji Zhu. JMLR, Vol. 23, pp.34-1.

(* equal contribution.)

Requirements

Most required libraries should be included in environment.yml. To prepare the environment, run the following commands:

conda env create -f environment.yml
conda activate soden

Datasets

The 10 splits of SUPPORT and METABRIC datasets are available at data/support and data/metabric respectively.

The MIMIC and MIMIC-SEQ datasets are derived from the MIMIC-III database, which requires individual licenses to access. We preprocess the data using the code by PuruShotham and Meng et al. (2018). In particular, the MIMIC dataset in our paper is the result of 12_get_avg_first24hrs_17-features-processed(fromdb).ipynb. And the MIMIC-SEQ dataset in our paper is the result of 11_get_time_series_sample_17-features-processed_24hrs.ipynb.

Usage

Generate config files

  1. The folder configs/ includes model config templates for various models. range_specs.py defines tuning ranges of hyper-parameters.

  2. Run generate_config.py to randomly generate complete hyper-parameter configurations for random search. For example, to generate 100 random configurations for the proposed SODEN model on SUPPORT data, run the following command:

python generate_config.py --basic_model_config_file configs/support__rec_mlp.json --num_trials 100 --starting_trial 0 --random_seed 0

The generated 100 complete hyper-parameter configuration files will be stored in the folder data/hp_configs.

(The proposed SODEN model corresponds to rec_mlp function type in the code; and the ablation baselines SODEN-PH and SODEN-Cox respectively correspond to cox_mlp_mlp and cox_mlp_exp in the code.)

Train

Example command to run a single trial of training SODEN on the SUPPORT data with the split 1 (out of 1-10):

python main.py --save_model --save_log --dataset support --path data/support --split 1 --seed 1 --model_config_file data/hp_configs/support__rec_mlp__0__model.json --train_config_file data/hp_configs/support__rec_mlp__0__train.json

In particular, the model and training hyper-parameters are specified by the files support__rec_mlp__0__model.json and support__rec_mlp__0__train.json we generated before.

A model config filename takes the form <dataset>__<model_type>__<trial_id>__model.json and a training config filename takes the form <dataset>__<model_type>__<trial_id>__train.json.

Evaluation

A couple of evaluation metrics including the loss function will be calculated throughout the training procedure. But some evaluation metrics are time-consuming so their calculations are left to a dedicated evaluation mode. After training is completed, run the following command to evaluate.

python main.py --evaluate --dataset support --path data/support --split 1 --seed 1 --model_config_file data/hp_configs/support__rec_mlp__0__model.json --train_config_file data/hp_configs/support__rec_mlp__0__train.json

This command will load the best model checkpoint and make the evaluation (make sure the --save_model argument is added to the training command).

Acknowledgement

Yuanhao Liu and Chenkai Sun contributed to part of the baseline implementation and simulation study in this project.

About

SODEN: A Scalable Continuous-Time Survival Model through Ordinary Differential Equation Networks

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages