Taking multi-channel PPG and Accelerometer signals as input, BeliefPPG predicts the instantaneous heart rate and provides an uncertainty estimate for the prediction.
Project description
BeliefPPG: Uncertainty-aware Heart Rate Estimation from PPG signals via Belief Propagation (UAI 2023, Official Code)
Valentin Bieri*2, Paul Streli*1, Berken Utku Demirel1, Christian Holz1
1 Sensing, Interaction & Perception Lab, Department of Computer Science, ETH Zürich, Switzerland
2 MSc Student, Department of Computer Science, ETH Zürich, Switzerland
* These authors contributed equally to this work
We present a novel learning-based method that achieves state-of-the-art performance on several heart rate estimation benchmarks extracted from photoplethysmography signals (PPG). We consider the evolution of the heart rate in the context of a discrete-time stochastic process that we represent as a hidden Markov model. We derive a distribution over possible heart rate values for a given PPG signal window through a trained neural network. Using belief propagation, we incorporate the statistical distribution of heart rate changes to refine these estimates in a temporal context. From this, we obtain a quantized probability distribution over the range of possible heart rate values that captures a meaningful and well-calibrated estimate of the inherent predictive uncertainty. We show the robustness of our method on eight public datasets with three different cross-validation experiments.
Contents
TL; DR
This repository contains instructions on how to install BeliefPPG for inference and code to run leave-one-session-out cross-validation experiments on multiple supported datasets. Taking multi-channel PPG and Accelerometer signals as input, BeliefPPG predicts the instantaneous heart rate and provides an uncertainty estimate for the prediction.
Install
You can install the pip package using:
pip install beliefppg
Quick Start
To start inferring heart rate from PPG and accelerometer data, you first need to import the infer_hr
function from the beliefppg
package.
from beliefppg import infer_hr
sampling_rate = 128 # Hz (sampling rate of accelerometer and ppg sensor)
# Load data item containing the PPG, HR, and IMU signals --- challenging custom dataset
data = np.load('Data/example.npy', allow_pickle=True).item()
ppg = data['PPG head'].reshape((-1,1)) # reshape ppg to (n_samples, n_channels)
IMU_X = data['IMU X head']
IMU_Y = data['IMU Y head']
IMU_Z = data['IMU Z head']
acc = np.stack([IMU_X,IMU_X, IMU_Z], axis=-1)
y_pred, y_uncertainty, time_intervals = infer_hr(
ppg=ppg, # PPG signal data with shape (n_samples, n_channels)
acc=acc, # Accelerometer signal data with shape (n_samples, n_channels)
ppg_freq=sampling_rate, # Sampling frequency of the PPG signal in Hz
acc_freq=sampling_rate, # Sampling frequency of the accelerometer signal in Hz
decoding='sumproduct', # Decoding method to use, either "sumproduct" or "viterbi"
use_time_backbone=True, # Whether to use the time-domain backbone or not
uncertainty="std" # Metric for predictive uncertainty, either "entropy" or "std"
)
# The function returns predicted heart rates in BPM, uncertainties, and time intervals in seconds.
For a complete example demonstrating how to use BeliefPPG for heart rate inference, see the tutorial notebook.
Datasets
We provide a shell script which downloads the datasets DaLiA, WESAD, BAMI-1 and BAMI-2 from their original hosts. Run the following line in your terminal:
sh download_data.sh
- Note that WESAD does not natively include ground-truth HR. Labels can be generated from the provided ECG recordings instead.
- Support for the IEEE datasets is implemented, but the original data format seems to be no longer available. You can download it in the new format under https://zenodo.org/record/3902710#.ZGM9l3ZBy3C and restructure/convert the files or implement your own file reader.
Training and Inference
Run the following in your terminal:
python train_eval.py --data_dir ${DATA_PATH} --dataset dalia
This will run LoSo cross-validation on the DaLiA dataset. On a modern GPU, expect one full run to take roughly 10–14 hours.
Results, that is the MAEs, predictions and models, are saved in the output directory, which can be specified with the --out_dir
argument. Note that you may have to reinstall h5py in order for the models to be saved correctly.
We highly recommend that you use Weights&Biases to monitor model training. Make sure to log into W&B in the console and then simply add the argument --use_wandb
to save additional plots and logging information.
Citation
If your find our paper or codes useful, please cite our work:
@InProceedings{uai2023-beliefppg,
author={Bieri, Valentin and Streli, Paul and Demirel, Berken Utku and Holz, Christian},
title = {BeliefPPG: Uncertainty-aware Heart Rate Estimation from PPG signals via Belief Propagation},
year = {2023},
organization={PMLR},
booktitle = {Conference on Uncertainty in Artificial Intelligence (UAI)}
}
License and Acknowledgement
This project is released under the MIT license.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file beliefppg-0.1.1.tar.gz
.
File metadata
- Download URL: beliefppg-0.1.1.tar.gz
- Upload date:
- Size: 817.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4e0b871d28c56cf62d3b152451beaf6e8bfad3663707461931e6eafb19f7d975 |
|
MD5 | abd20a03982189aeb60812136f599f63 |
|
BLAKE2b-256 | 27e232953664cfac9d179ae30c1abdb5cb92d18f5497c2eb1bef74adc7056705 |
File details
Details for the file beliefppg-0.1.1-py3-none-any.whl
.
File metadata
- Download URL: beliefppg-0.1.1-py3-none-any.whl
- Upload date:
- Size: 819.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.10.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 770de8b3d0bd62cbedee9b6df05729cad483316ac03b649bc6d2e9cf2ebc7b7a |
|
MD5 | 153db34216cd6ad171ac74fb6c8246cc |
|
BLAKE2b-256 | 7cc068c76596bd16374afd25c0ce0a6b41cc5bd5b7a2aa0595f04445a04d2c75 |