Graph-Guided Networks For Irregular & Complex Time Series

In many domains, including healthcare, biology, and climate science, time series are irregularly sampled with varying time intervals between successive readouts and different subsets of variables (sensors) observed at different time points. Practical issues often exist in collecting sensor measurements that lead to various types of irregularities caused by missing observations, such as cost saving, sensor failures, external forces in physical scenarios, medical interventions, to name a few.

While machine learning methods for time series usually assume fully observable and fixed-size inputs, irregularly sampled time series raise considerable challenges. For example, sensors' observations might not be aligned, time intervals among adjacent readouts can vary across sensors, different samples can have varying numbers of readouts recorded at different times.

We introduce Raindrop, a graph neural network that learns to embed irregularly sampled and multivariate time series while simultaneously learning the dynamics of sensors purely from observational data. Raindrop can handle misaligned observations, varying time gaps, arbitrary numbers of observations, thus producing fixed-dimensional embeddings via neural message passing and temporal self-attention.

Multivariate time series are prevalent in various domains, including healthcare, space science, cyber security, biology, and finance. Practical issues often exist in collecting sensor measurements that lead to various types of irregularities caused by missing observations, such as saving costs, sensor failures, external forces in physical systems, medical interventions, to name a few.

Prior methods for dealing with irregularly sampled time series involve filling in missing values using interpolation, kernel methods, and probabilistic approaches. However, the absence of observations can be informative on its own, and thus imputing missing observations is not necessarily beneficial. While modern techniques involve recurrent neural network architectures (e.g., RNN, LSTM, GRU) and transformers, they are restricted to regular sampling or assume aligned measurements across modalities. For misaligned measurements, existing methods rely on a two-stage approach that first imputes missing values to produce a regularly-sampled dataset and then optimizes a model of choice for downstream performance. This decoupled approach does not fully exploit informative missingness patterns or deal with irregular sampling, thus producing suboptimal performance. Therefore, recent methods circumvent the imputation stage and directly model irregularly sampled time series.

To address the characteristics of irregularly sampled time series, we propose to model temporal dynamics of sensor dependencies and how those relationships evolve over time. Our intuitive assumption is that the observed sensors can indicate how the unobserved sensors currently behave, further improving the representation learning of irregular multivariate time series. We develop Raindrop, a graph neural network that leverages relational structure to embed and classify irregularly sampled multivariate time series. Raindrop can handle misaligned observations, varying time gaps, arbitrary numbers of observations, and produce multi-scale embeddings via a novel hierarchical attention.

Motivation for Raindrop

Raindrop takes samples as input, every sample containing multiple sensors and each sensor consisting of irregularly recorded observations (e.g., in clinical data, an individual patient’s state of health is recorded at irregular time intervals with different subsets of sensors observed at different times). Every observation is a real-value scalar (sensor readout).

Raindrop is inspired by how raindrops hit a surface at varying time intervals and create ripple effects that propagate throughout the surface (as shown in the following figure). Mathematically, in Raindrop, observations (i.e., raindrops) hit the sensor graph (i.e., the surface) asynchronously and at irregular time intervals; each observation is processed by passing messages to neighboring sensors (i.e., creating ripples), taking into account the learned sensor dependencies.

The key idea of Raindrop is that the observed sensors can indicate how the unobserved sensors currently behave, which can further improve the representation learning of irregular multivariate time series. Taking advantage of the inter-sensor dependencies and temporal attention, Raindrop leans a fixed-dimensional embedding for irregularly sampled time series.

Raindrop approach

Raindrop learns sample embeddings in a hierarchical architecture that processes individual observations, combines them into sensors, which, in turn, are aggregated to produce sample embeddings:

  1. We first construct a graph for each sample where nodes represent sensors and edges indicate relations between sensors.
  2. Raindrop generates observation embedding based on observed value, passes messages to neighbor sensors, and generates observation embedding through inter-sensor dependencies (as shown in panel a).
  3. We apply the message passing to all timestamps and produce corresponding observation embeddings. We aggregate an arbitrary number of observation embeddings into a fixed-length sensor embedding, while paying distinctive attention to different observations (as shown in panel b) through temporal self-attention. We independently apply the sensor-level processing procedure to all sensors.
  4. At last, we use a readout function to merge all sensor embeddings to obtain a sample embedding. The learned sampled embedding can be fed into a downstream task such as classification.

Attractive properties of Raindrop

  • Unique capability to model irregularly sampled time series: Raindrop can learn fixed-dimensional embedding for irregularly sampled multivariate time series while addressing challenges including misaligned observations, varying time gaps, and arbitrary numbers of observations.
  • Modeling of inter-sensor structure: To the best of our knowledge, Raindrop is the first model adopting neural message passing to model inter-sensor dependencies in irregular time series.
  • Excellent performance on leave-sensor-out scenarios: Raindrop outperforms five state-of-the-art methods across three datasets and four experimental settings, including a setup where a subset of sensors in the test set have malfunctioned (i.e., have no readouts at all).

Publication

Graph-Guided Network For Irregularly Sampled Multivariate Time Series
Xiang Zhang, Marko Zeman, Theodoros Tsiligkaridis, and Marinka Zitnik
International Conference on Learning Representations, ICLR 2022

@inproceedings{zhang2022graph,
title = {Graph-Guided Network For Irregularly Sampled Multivariate Time Series},
author = {Zhang, Xiang and Zeman, Marko and Tsiligkaridis, Theodoros and Zitnik, Marinka},
booktitle = {International Conference on Learning Representations, ICLR},
year      = {2022}
}

Code

Pytorch implementation of Raindrop are available in the GitHub repository.

Physical activity monitoring dataset is deposited in the Figshare.

Slides

Slides describing Raindrop are available here.

Authors

Latest News

Apr 2024:   Biomedical AI Agents

Mar 2024:   Efficient ML Seminar Series

We started a Harvard University Efficient ML Seminar Series. Congrats to Jonathan for spearheading this initiative. Harvard Magazine covered the first meeting focusing on LLMs.

Mar 2024:   UniTS - Unified Time Series Model

UniTS is a unified time series model that can process classification, forecasting, anomaly detection and imputation tasks within a single model with no task-specific modules. UniTS has zero-shot, few-shot, and prompt learning capabilities. Project website.

Mar 2024:   Weintraub Graduate Student Award

Michelle receives the 2024 Harold M. Weintraub Graduate Student Award. The award recognizes exceptional achievement in graduate studies in biological sciences. News Story. Congratulations!

Mar 2024:   PocketGen - Generating Full-Atom Ligand-Binding Protein Pockets

PocketGen is a deep generative model that generates residue sequence and full-atom structure of protein pockets, maximizing binding to ligands. Project website.

Feb 2024:   SPECTRA - Generalizability of Molecular AI

Feb 2024:   Kaneb Fellowship Award

The lab receives the John and Virginia Kaneb Fellowship Award at Harvard Medical School to enhance research progress in the lab.

Feb 2024:   NSF CAREER Award

The lab receives the NSF CAREER Award for our research in geometric deep learning to facilitate algorithmic and scientific advances in therapeutics.

Feb 2024:   Dean’s Innovation Award in AI

Jan 2024:   AI's Prospects in Nature Machine Intelligence

We discussed AI’s 2024 prospects with Nature Machine Intelligence, covering LLM progress, multimodal AI, multi-task agents, and how to bridge the digital divide across communities and world regions.

Jan 2024:   Combinatorial Therapeutic Perturbations

New paper introducing PDGrapher for combinatorial prediction of chemical and genetic perturbations using causally-inspired neural networks.

Nov 2023:   Next Generation of Therapeutics Commons

Oct 2023:   Structure-Based Drug Design

Geometric deep learning has emerged as a valuable tool for structure-based drug design, to generate and refine biomolecules by leveraging detailed three-dimensional geometric and molecular interaction information.

Oct 2023:   Graph AI in Medicine

Graph AI models in medicine integrate diverse data modalities through pre-training, facilitate interactive feedback loops, and foster human-AI collaboration, paving the way to clinically meaningful predictions.

Sep 2023:   New papers accepted at NeurIPS

Sep 2023:   Future Directions in Network Biology

Excited to share our perspectives on current and future directions in network biology.

Aug 2023:   Scientific Discovery in the Age of AI

Jul 2023:   PINNACLE - Contextual AI protein model

PINNACLE is a contextual AI model for protein understanding that dynamically adjusts its outputs based on biological contexts in which it operates. Project website.

Jun 2023:   Our Group is Joining the Kempner Institute

Excited to join Kempner’s inaugural cohort of associate faculty to advance Kempner’s mission of studying the intersection of natural and artificial intelligence.

Jun 2023:   Welcoming a New Postdoctoral Fellow

An enthusiastic welcome to Shanghua Gao who is joining our group as a postdoctoral research fellow.

Zitnik Lab  ·  Artificial Intelligence in Medicine and Science  ·  Harvard  ·  Department of Biomedical Informatics