LGJul 29, 2021

Self-Supervised Transformer for Sparse and Irregularly Sampled Multivariate Clinical Time-Series

arXiv:2107.14293v2176 citationsHas Code
AI Analysis

This addresses the challenge of handling noisy and incomplete healthcare data for improved clinical predictions, though it is incremental as it builds on transformer architectures with specific adaptations for time-series.

The paper tackles the problem of learning from sparse and irregularly sampled multivariate clinical time-series by proposing STraTS, a self-supervised transformer model that treats data as observation triplets and uses continuous value embeddings, resulting in better prediction performance than state-of-the-art methods for mortality prediction, especially with limited labeled data.

Multivariate time-series data are frequently observed in critical care settings and are typically characterized by sparsity (missing information) and irregular time intervals. Existing approaches for learning representations in this domain handle these challenges by either aggregation or imputation of values, which in-turn suppresses the fine-grained information and adds undesirable noise/overhead into the machine learning model. To tackle this problem, we propose a Self-supervised Transformer for Time-Series (STraTS) model which overcomes these pitfalls by treating time-series as a set of observation triplets instead of using the standard dense matrix representation. It employs a novel Continuous Value Embedding technique to encode continuous time and variable values without the need for discretization. It is composed of a Transformer component with multi-head attention layers which enable it to learn contextual triplet embeddings while avoiding the problems of recurrence and vanishing gradients that occur in recurrent architectures. In addition, to tackle the problem of limited availability of labeled data (which is typically observed in many healthcare applications), STraTS utilizes self-supervision by leveraging unlabeled data to learn better representations by using time-series forecasting as an auxiliary proxy task. Experiments on real-world multivariate clinical time-series benchmark datasets demonstrate that STraTS has better prediction performance than state-of-the-art methods for mortality prediction, especially when labeled data is limited. Finally, we also present an interpretable version of STraTS which can identify important measurements in the time-series data. Our data preprocessing and model implementation codes are available at https://github.com/sindhura97/STraTS.

Code Implementations1 repo
Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes