Hospital readmissions dramatically reduced with trusted analytics platform
POSTED : March 7, 2018
BY : Ham Pasupuleti

Solution Overview: TAP packages standard open source tools such as Cloudera Hadoop, Apache Spark, Jupyter Notebook, Docker and Cloud Foundry to create an integrated platform to allow data scientists to quickly develop predictive models from large data sets and then deploy those models for use in applications. Reference Architecture: Multiple data sources can be combined to train a predictive model with high accuracy on assessing the likelihood of patient readmission. The model can be deployed as a service on TAP so that its predictions can be consumed by other applications (see Figure 1).

The challenge: Preventing hospital readmissions

To promote quality health care for Americans and reduce hospital readmissions, the Affordable Care Act (Section 3025) established the Hospital Readmissions Reduction Program (HRRP). The program instructs the Centers for Medicare & Medicaid Services (CMS) to penalize hospitals that have higher-than-expected readmissions for specific clinical conditions. In addition to complying with HRRP, hospitals have other financial incentives for reducing statistically high readmission rates too — they incur unnecessary costs when patients are readmitted for conditions that could have been addressed during the patient’s initial stay. As a result, hospitals need a reliable and efficient way to reduce readmission rates.

Using the Reference Architecture:

Figure 1: Reference architecture for the creation and deployment of a predictive model to assess patient readmission risk.

Figure 1 illustrates the reference architecture that uses a predictive modeling process where patient electronic medical record (EMR) data is combined with multiple data sources, such as census and socio-economic data, to form a rich picture of a patient. With the right inputs, data scientists can create predictive models that learn the relationships between patient data and their propensity for different conditions, e.g. heart disease or risk of early readmission. The reference architecture is meant to be customized to a specific hospital, creating a unique implementation. The reference implementation (see Section 4 and the GitHub repository listed) includes downloadable code and detailed documentation. Specific discussion and considerations for a hospital’s individual implementation can be found in Section 5. In general, once a predictive model has been created and validated, it can be deployed as a cloud-based service that allows the model’s predictions to be consumed by other applications. For example, discharge planning software can pass a list of patient IDs to the model and receive a score that indicates the readmission risk for each patient. Once high-risk patients have been identified, their EMRs and discharge plans can be evaluated to address any appropriate risk factors. The model serves as a cognitive aid to assist hospital staff in identifying patients at high risk for hospital readmissions who may have otherwise gone unnoticed.

What the solution contains: The reference implementation

The reference implementation (Figure 2) utilizes the core TAP technologies, e.g. Cloudera Hadoop (CDH), Apache Spark, Jupyter Notebook, Docker and Cloud Foundry in the following process: 1. Historical data and patient records are stored in the CDH cluster. 2. Jupyter notebooks are created in Docker containers which enables data scientists to conduct collaborative and reproducible analysis. 3. Apache Spark — the big data computing engine — is utilized on the CDH cluster to analyze large distributed datasets. 4. Apache Spark’s Machine Learning Library is used to train and validate the predictive model. 5. Cloud Foundry is used to package the predictive model and deploy it in the TAP cloud as an API service. 6. Cloud Foundry is also used to create an application that displays prediction results in a visual manner to facilitate comprehension by medical staff.

See the GitHub repository here for more details.

Figure 2: Logical relationship and key technologies used in this reference implementation.

Adoption roadmap: Creating a new implementation

This adoption roadmap outlines how creating a unique implementation of the reference architecture differs from the specifics of the reference implementation in Section 4.

The adoption roadmap for this solution consists of five essential steps:

  1. Identify the organization’s relevant data and load it into the TAP cluster: At a minimum, a hospital’s admission records are required to identify which patients were readmitted within a given time frame. Other sources of data, such as demographic information, electronic chart data and comorbidity records, can further enrich the patient readmission data, boosting model performance. Choosing which data to incorporate into a model can be as much a creative effort as it is an investigative one, and should be treated as an iterative development process. Subject matter experts (SMEs), IT professionals and data scientists should be involved in this initial phase. Data can be loaded and stored in TAP in many forms that lend themselves to the individual preferences and needs of an IT and analytics team. CSV files and Hive tables are two storage formats that facilitate using big data tools, such as Apache Spark.
  2. Explore, process and engineer features for use in predictive modeling: This step involves creating the data pipeline that takes the data from its original source and prepares it for modeling. This step includes conducting exploratory data analysis (EDA) to learn the structure of the data, cleaning any dirty or missing data and identifying what data fields will be useful for modeling. A significant effort in this step is feature engineering – the creation of new data features from pre-existing ones. Feature engineering is best done when SMEs, IT professionals and data scientists come together to brainstorm and discuss novel ideas and courses of action. In most cases, socioeconomic, demographic data and low-dimensional features, such as height, weight and age contain the majority of the predictive signal.
  3. Pick performance criteria and train a predictive model accordingly: No model is perfect and tradeoffs must be made since some patients will be incorrectly flagged by the model and other high-risk patients will be missed entirely. Therefore, an analysis must be done that considers the cost of false positives and false negatives – administering unnecessary medical care or missing a high-risk patient – and the benefit of true positives, reducing readmissions. The stakeholders in this discussion are healthcare professionals, operations planning staff and data scientists. With appropriate performance criteria, the data scientist can train and validate a model according to the specified criteria. The area under the receiver operating characteristic curve (AUC-ROC) is best suited for delivering optimal results on this particular problem.
  4. Deploy the predictive model as an API that can be used by another application: Once a model has been created it must be deployed in a format that enables other applications to consume the predictions. From a development and integration standpoint, the simplest way to do this is to package the model as a service where it can be called like a REST API. Creating the model as a service gives application developers tremendous flexibility in how they choose to utilize the model, allowing them to only worry about the input and output of the model and ignore the internal details of how the model works.
  5. Build an application that incorporates the model predictions into the workflow: With the model available as a service, it is necessary to incorporate the prediction results into an existing workflow to give medical practitioners a way to easily use the model’s predictions. Since the output of a model is just a number representing a risk score for readmission, this reference architecture builds a lightweight app that allows visualizations of the predictions and patient data. It is often helpful to provide contextual data to go with a given prediction so hospital staff can view the model’s prediction within the broader context of the overall population. The model-as-a-service approach is modular and flexible enough to incorporate into different applications as needed to fit an organization’s requirements.

Solution background: A case study in reducing readmissions

This reference architecture was inspired by a pilot program implemented by Intel and Cloudera. The program set out to use predictive analytics to reduce readmission rates within a large hospital group.

Intel data scientists took historical patient data and combined it with socioeconomic data, such as housing prices and health services, in the surrounding area. With this enriched dataset, they trained a random forest predictive model that enabled doctors to pinpoint which patients were a high readmission risk. With this information, hospital staff administered additional care to identify any shortcomings in the treatment and discharge plan, thereby reducing overall readmission rates.

By using the predictions from the analysis, the hospital group received the following benefits:

  1. Reduced 6,000 occurrences of patient readmission.
  2. Avoided $4 million in potential Medicare penalties.
  3. Saved approximately $72 million in medical costs.
  4. Improved hospital ratings by lowering readmission rates and increasing patient satisfaction.
  5. Achieved more efficient utilization of resources by focusing on high-risk patients.

One of the unintended benefits of implementing this solution was the more efficient utilization of resources. Specifically, the increased quality of care provided to the identified patients at high risk for hospital readmissions during their initial visit freed up resources that enabled the hospital group to help an increase of 300-500 percent of patients.

Implementing the reference architecture on TAP allows the solution to be quickly developed and customized for an individual hospital or healthcare organization. The implementation of the model as a RESTful service allows it to be easily consumed by any third-party applications.

Conclusion

This reference implementation serves as a blueprint for any healthcare organization to use TAP to quickly adopt the above-described solution to lowering hospital readmissions and begin reaping the same benefits.

Learn more about Concentrix Catalyst’s healthcare emerging technologies practice.


About the Author

Ham Pasupuleti has held strategy and operations roles in the IT industry for more than 27 years, implementing and managing business-critical applications and systems infrastructure for Global 1000 companies. At Concentrix Catalyst, he provides business analytics and optimization solutions to healthcare organizations, enabling them to transform into outcome-based delivery models that are high quality, accountable, patient-centric, and cost-effective.

Tags: , , , , , ,

Reduced Hospital Admissions with Trusted Analytics Platform