Add MixLSTM and BaselineLSTM model for clinical mortality prediction#993
Open
michellekankan wants to merge 2 commits intosunlabuiuc:masterfrom
Open
Add MixLSTM and BaselineLSTM model for clinical mortality prediction#993michellekankan wants to merge 2 commits intosunlabuiuc:masterfrom
michellekankan wants to merge 2 commits intosunlabuiuc:masterfrom
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Contributor
Type of Contribution
Model (Option 2)
Paper
Jeeheh Oh, Jiaxuan Wang, Shengpu Tang, Michael Sjoding, Jenna Wiens
Relaxed Parameter Sharing: Effectively Modeling Time-Varying Relationships in Clinical Time-Series
https://arxiv.org/abs/1906.02898
Description
Implement the mixLSTM architecture and its BaselineLSTM counterpart for modeling irregular clinical time-series data.
mixLSTM: Addresses temporal conditional shift by relaxing the standard LSTM parameter-sharing constraint. It utilizes a mixture of LSTM cells, dynamically combining their parameters at each timestep using learnable mixing coefficients.
BaselineLSTM: A standard LSTM implementation that serves as the control group for ablation studies.
Both models are fully integrated with the PyHealth BaseModel structure, supporting dynamic schema parsing for features and labels.
File Guide
pyhealth/models/mix_lstm.pypyhealth/models/__init__.pytests/core/test_mix_lstm.pyexamples/mimic3_mortality_mixlstm.pydocs/api/models.rstdocs/api/models/pyhealth.models.mix_lstm.rstAblation Study Summary
We conducted a data-level and hyperparameter ablation study on the MIMIC-III In-hospital Mortality task comparing BaselineLSTM with mixLSTM (K=2, K=4) across standard and ablated (masks removed, zero-imputed) data regimes.
Performance: mixLSTM (K=4) achieved the highest performance on the baseline data (AUROC: 0.8020, AUPR: 0.3651), outperforming the BaselineLSTM (AUROC: 0.7868, AUPR: 0.3522).
Robustness: All models exhibited significant performance drops in the ablated regime, indicating a heavy reliance on explicit missingness masks for clinical prediction tasks.