/Covid19-Hospitalization-Prediction

ML model that generates hospitalization probability for COVID-positive patients within 21 days of a positive test result. Part of the COVID-19 EHR DREAM Challenge.

Primary LanguageJupyter Notebook

Predicting Covid-19 Hospitalization using OMOP Data and Biomedical Text

License: MIT

Here we (Eric, Mohammad, Santina) present a framework to generate hospitalization likelihood for COVID-positive patients within 21 days of test result.

This project is part of the COVID-19 DREAM challenge (specifically Question 2) and came together while taking Georgia Tech's OMSCS 6250: Big Data for Health class. In addition to using the data provided in the DREAM challenge, we incorporate an NLP-based analysis on the separate open-source CORD-19 dataset and use it to guide feature selection. Overall, incorporating the NLP component without filtering did not improve the results locally, however after filtering we were able to consistetly finish in the top 10 submissions based on AUPR and AUROC (ranking as-of the 11-11-2020 dataset, leaderboard linked here).

Project Overview

Without a doubt, COVID-19 has dramatically affected all of our lives and it is important we seek to understand and support each other during these challenging times. Our team was motivated by the open-source efforts to better understand COVID-19 and the potential of accurate hospitalization predictions to improve medical scheduling and triage for scarse resources. This repository contains our project submission and analysis.

This project has two key components:

  1. Generating a ML model using traditional statistical analysis on the DREAM challenge dataset
  2. Performing an NLP analysis on the separate CORD-19 dataset and using that to guide feature selection

In this analysis, features are represented by concept_ids as defined by the OMOP data model from OHDSI. An index of all concept_ids can be found using the OHDSI ATHENA tool linked here.

Data (from CORD-19 Dataset)

  • Input: CORD-19 dataset containing research paper abstracts and titles
  • Output: List of concept_ids based on appearance count in titles and abstracts

Data (from DREAM Challenge Dataset)

  • Input: OMOP-formatted dataset, results from NLP analysis
  • Output: Prediction scores (between 0 and 1) for each patient representing likelihood of hospitalization within 21 days of a positive COVID test

Description of the model

There are two variants we explored during this project: a model trained using all possible concept_ids as features (in src/use_all_concepts), and a model trained using the counts of user-specified concept_ids as features (in src/use_compressed_concepts). For our final submission we used the "compressed" version was easier to deploy already performed significantly well.

For each model, we first generate a feature set for each patient in the /data folder using PCA on the counts of specified concept_ids, and then we apply a 10-fold cross-validation model of choice [Logistic Regression, Support Vector Machine, Random Forest] on the feature set. Once the model is trained, we save the model file in the /modelfolder. During the inference stage, we create a feature matrix using the same set of demographics features. Then we load the trained model and apply the model on the feature matrix to generate a prediction file as /output/predictions.csv

Run the model locally on synthetic EHR data

  1. Download the repository and build the Docker image. The model results will be run on the synthetic_data folder. For this example, the container name awesome-covid19-q2-model is arbitrarily used.

    docker build -t awesome-covid19-q2-model:v1 .
  2. Run the dockerized model to train on the patients in the training dataset.

    docker run \
        -v $(pwd)/synthetic_data/training:/data:ro \
        -v $(pwd)/output:/output:rw \
        -v $(pwd)/model:/model:rw \
        awesome-covid19-q2-model:v1 bash /app/train.sh
  3. Run the trained model on evaluation dataset and generate the prediction file.

    docker run \
        -v $(pwd)/synthetic_data/evaluation:/data:ro \
        -v $(pwd)/output:/output:rw \
        -v $(pwd)/model:/model:rw \
        awesome-covid19-q2-model:v1 bash /app/infer.sh
  4. The predictions generated are saved to /output/predictions.csv. The column person_id includes the ID of the patient and the column score the probability for the COVID-19-positive patient to be hospitalized within 21 days after the latest COVID test.

    $ cat output/predictions.csv
    person_id,score
    0,0.05468081015726079
    1,0.11703154589067764
    2,0.12081316578916707
    3,0.10190242888652237
    ...
    

Model Submission

The instructions to submit the model are provided in SUBMISSION_INSTRUCTIONS.md. Feel free to build off-of this as you see fit!