Cardiotoxicity Prediction

Learnings from a few papers

By Jeremy Irvin, Pranav Rajpurkar on October 7th 2017

Chemotherapy, or the use of anticancer drugs, remains one of the most common and effective cancer treatments used today. However, the intense anticancer regimen can take its toll on the body, causing substantial health complications during and after treatment. One frequent side effect of anticancer medication is severe heart damage, a phenomenon known as cardiotoxicity.

Cardiotoxicity is a condition when there is damage to the heart muscle, and as a result, the heart is not able to pump blood effectively to the rest of the body. Over time, the kidneys may respond by causing the body to retain fluid, causing congestion, leading to a condition known as Congestive Heart Failure. An echocardiogram test allows doctors to make a calculation of how well the heart pumps blood with each beat, called the ejection fraction (EF). Most times, EF refers to the amount of blood being pumped out of the left ventricle of the heart each time it contracts, also called Left Ventricular Ejection Fraction (LVEF).

In this post, we share our learnings from three recent papers that provide insight into the some methods for detection of cardiotoxicity.

The first paper we look at is Early detection of anthracycline cardiotoxicity and improvement with heart failure therapy (Cardinale et al. 2015).
The paper proposes that early detection and treatment of cardiotoxicity, even when asymptomatic, is critical for cardiac function recovery and for reduction of associated adverse cardiac events.

  • The primary end-point of the study is the time of occurrence of cardiotoxicity. Cardiotoxicity is defined as LVEF decrease >10% units, and below 50% measured against the baseline LVEF before the start of chemotherapy. When patients are diagnosed as cardiotoxic, Heart Failure Therapy is started, and recovery from cardiotoxicity, defined as LVEF increase, is measured.
  • A multivariable Cox regression model with forward stepwise selection of variables is built with candidate variables including age, gender, cardiovascular risk factors, cumulative anthracycline dose, mediastinal radiotherapy, left chest radiotherapy, body mass index, year of recruitment, and baseline and final (at the end of chemotherapy) LVEF. The model identifies cumulative anthracycline dose and end-chemotherapy LVEF as associated with cardiotoxicity occurrence after cross-validation.
  • The paper notes that previous literature classifies cardiotoxicities into 1) “acute”, showing up after a single dose, or a single course of chemo drugs, 2) “early onset chronic”, the most frequent and clinically relevant, developing within 1 year, and 3) “late onset chronic” developing years, or even decades, after the end of chemotherapy. The paper argues that this classification may be misguided, and proposes that we might be “possibly observing different stages of evolution of the same phenomenon and not three distinct diseases.”

The second paper we look at is Cardiotoxicity of anticancer treatments: Epidemiology, detection, and management (Curigliano et al. 2016).
This review summarizes recent findings on the use of cardiotoxic cancer therapeutics, namely common adverse events, discovery of cancer therapy-induced cardiovascular damage, the treatment of this damage, and potential cardioprotective agents. Here are a few of the points we found most interesting:

  • Cardiovascular disease is the second leading cause of long-term disease and death among cancer survivors.
  • Decreases in LVEF only occur after substantial cardiac damage, so LVEF measurement is poor for detecting early-stage cardiotoxicity. This aligns with the findings of the previous paper - cardiotoxic effects were generally detected too late, as only 11% of patients experienced a full recovery (i.e. restoration of the LVEF value before beginning chemotherapy). This calls for improved predictors and even better, preventative mechanisms.
  • Other imaging tools like MUGA and and MRI are better at early-stage detection. However, MUGA requires radiation exposure and MRI is costly and hard to obtain with frequency, so LVEF remains the current best diagnostic tool used in practice.
  • There is work to improve diagnosis through biomarkers, but these are sparsely used in clinical settings due to lack of understanding. There are also efforts to develop cardioprotective treatment, but none have been proven to work for cancer therapy-related cardiotoxicity.

Finally, we look at Using recurrent neural network models for early detection of heart failure onset (Choi et al. 2017), a paper that uses machine learning on EHR data to automatically predict risk of heart failure. While this doesn’t directly tackle prediction of chemotherapy-induced cardiotoxicity, it highlights an approach that could be applied towards that goal.

  • The authors partition an 18-month period of data into an observation window and a prediction window. From the observation window, they obtain a single patient’s history during that period, including diagnoses, prescription orders, performed procedures, etc. For example, the history includes the number of times the patient used a particular medication in the observation window and the number of times the patient underwent a certain procedure during that period. In the prediction window, a model is responsible for predicting whether the patient will develop heart failure, represented as a binary label.
  • The main contribution of this work is the use of recurrent neural networks (RNNs) to process temporal patient data. Instead of using a single representation of the patient’s medical history, they represent their history as a sequence of events, where an event may be the arrival of a particular symptom or performance of a certain procedure for example. It is important to note that each patient experiences different sequences of events during the observation window. Fortunately, RNNs are designed to handle variable-length sequences.
  • Every patient in their dataset is represented by a sequence of events which amalgamate their medical history during the observation window, along with a label denoting whether the patient will go on to develop heart failure in the prediction window. The authors train RNNs on these sequences to predict whether a patient will be diagnosed with heart failure during the prediction window. They in fact use a variation of the RNN known as the Gated Recurrent Unit (GRU) which has been shown to allow for better information flow across long sequences.
  • The vectors used as input to the baselines as well as the ones used to represent each vector in the sequence for the RNN model are sparse, meaning they have a lot of entries which are zero (as opposed to dense vectors). The authors propose a solution by pre-training event embeddings, or dense vectors, on all of their medical data using a method known as skip-gram. This model represents each event as a learnable vector such that words that are used in the same contexts have similar representations in vector space (see Stanford’s CS224D notes for more info).
  • The paper finds that the RNN model outperforms other ML methods (SVMs, kNNs, logistic regression), especially when the observation window is long (12-month vs 9-month), indicating that the RNN can exploit temporal information effectively. In addition, the work also shows that pretraining the medical event vectors using skip-grams improves the performance of all models!

Comments:

Also Read


Treatment Effects with Decision Trees

Risk Stratification For Patient Care

Survival Analysis


#healthcare