nielsr HF Staff commited on
Commit
570cb3b
·
verified ·
1 Parent(s): 2a88159

Improve dataset card: Add task category, sample usage, model details, and HF Hub link

Browse files

This PR enhances the dataset card by:
- Adding `task_categories: - other` to the metadata for better discoverability.
- Adding a prominent link to the dataset's own Hugging Face Hub page (`https://huggingface.co/datasets/kyegorov/mcd_rppg`), which serves as the project page.
- Incorporating details about the "Fast Baseline Model" and its architecture from the GitHub README.
- Adding a "Sample Usage" section with code snippets for environment setup and running experiments, directly from the GitHub repository's `README.md`.
- Including the "Results and Comparison" tables from the GitHub README to provide performance benchmarks for the associated model.

The existing arXiv paper link (`https://arxiv.org/abs/2508.17924v1`) has been retained, as per the instructions not to replace an existing arXiv link with a Hugging Face Papers page link.

Files changed (1) hide show
  1. README.md +58 -4
README.md CHANGED
@@ -1,16 +1,21 @@
1
  ---
2
  license: cc-by-4.0
 
 
3
  tags:
4
  - medical
5
  - video
6
  - ecg
7
  - ppg
8
- size_categories:
9
- - 1K<n<10K
10
  ---
 
11
  # MCD-rPPG: Multi-Camera Dataset for Remote Photoplethysmography
12
 
13
- This repository contains the dataset from the paper ["Gaze into the Heart: A Multi-View Video Dataset for rPPG and Health Biomarkers Estimation"](https://arxiv.org/abs/2508.17924v1)
 
 
14
 
15
  The presented large-scale multimodal MCD-rPPG dataset is designed for remote photoplethysmography (rPPG) and health biomarker estimation from video. The dataset includes synchronized video recordings from three cameras at different angles, PPG and ECG signals, and extended health metrics (arterial blood pressure, oxygen saturation, stress level, etc.) for 600 subjects in both resting and post-exercise states.
16
 
@@ -24,10 +29,58 @@ The dataset contains:
24
  * **13 health biomarkers**: systolic/diastolic pressure, oxygen saturation, temperature, glucose, glycated hemoglobin, cholesterol, respiratory rate, arterial stiffness, stress level (PSM-25), age, sex, BMI.
25
  * **Multi-view videos**: frontal webcam, FullHD camcorder, mobile phone camera.
26
  *
27
- ## Code and usage
 
 
 
 
 
 
 
 
 
28
 
29
  See GitHub repository [https://github.com/ksyegorov/mcd_rppg](https://github.com/ksyegorov/mcd_rppg)
30
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
31
 
32
  ## Citation
33
 
@@ -40,3 +93,4 @@ If you use the MCD-rPPG dataset or code from this repository, please cite our wo
40
  journal={arXiv preprint arXiv:2508.17924},
41
  year={2024}
42
  }
 
 
1
  ---
2
  license: cc-by-4.0
3
+ size_categories:
4
+ - 1K<n<10K
5
  tags:
6
  - medical
7
  - video
8
  - ecg
9
  - ppg
10
+ task_categories:
11
+ - other
12
  ---
13
+
14
  # MCD-rPPG: Multi-Camera Dataset for Remote Photoplethysmography
15
 
16
+ This repository contains the dataset from the paper ["Gaze into the Heart: A Multi-View Video Dataset for rPPG and Health Biomarkers Estimation"](https://arxiv.org/abs/2508.17924v1).
17
+
18
+ The MCD-rPPG dataset is available on the Hugging Face Hub: [**MCD-rPPG Dataset**](https://huggingface.co/datasets/kyegorov/mcd_rppg)
19
 
20
  The presented large-scale multimodal MCD-rPPG dataset is designed for remote photoplethysmography (rPPG) and health biomarker estimation from video. The dataset includes synchronized video recordings from three cameras at different angles, PPG and ECG signals, and extended health metrics (arterial blood pressure, oxygen saturation, stress level, etc.) for 600 subjects in both resting and post-exercise states.
21
 
 
29
  * **13 health biomarkers**: systolic/diastolic pressure, oxygen saturation, temperature, glucose, glycated hemoglobin, cholesterol, respiratory rate, arterial stiffness, stress level (PSM-25), age, sex, BMI.
30
  * **Multi-view videos**: frontal webcam, FullHD camcorder, mobile phone camera.
31
  *
32
+ ## Fast Baseline Model
33
+
34
+ We propose an efficient multi-task model that:
35
+ * Processes video in **real-time on a CPU** (up to 13% faster than leading models).
36
+ * Estimates the **PPG signal** and **10+ health biomarkers** simultaneously.
37
+ * Is lightweight (~4 MB) and uses domain-specific preprocessing suitable for low-power devices.
38
+
39
+ The model architecture combines domain-specific preprocessing (ROI selection on the face) with a convolutional network (1D Feature Pyramid Network).
40
+
41
+ ## Code and Sample Usage
42
 
43
  See GitHub repository [https://github.com/ksyegorov/mcd_rppg](https://github.com/ksyegorov/mcd_rppg)
44
 
45
+ To get started with the code and reproduce experiments, follow these steps:
46
+
47
+ 1. **Clone the repository:**
48
+ ```bash
49
+ git clone https://github.com/ksyegorov/mcd_rppg.git
50
+ cd mcd_rppg/
51
+ ```
52
+
53
+ 2. **Install dependencies.** Using a virtual environment is recommended.
54
+ ```bash
55
+ pip install -r requirements.txt
56
+ ```
57
+
58
+ 3. **Run the notebooks** you are interested in (e.g., `train_SCNN_8roi_mcd_rppg.ipynb`) for training or reproducing experiments. Remember to download the MCD-rPPG dataset first.
59
+
60
+ ## Results and Comparison
61
+
62
+ The tables below show key results of our model (Ours) compared to state-of-the-art (SOTA) alternatives. MAE (Mean Absolute Error) is calculated for the PPG signal and Heart Rate (HR).
63
+
64
+ **Table: Model performance comparison (MAE) in cross-dataset scenarios**
65
+ *(Summary of results from the paper)*
66
+
67
+ | Model | ... | MCD-rPPG (HR MAE) | ... |
68
+ |----------------|-----|-------------------|-----|
69
+ | PBV | ... | 15.37 | ... |
70
+ | OMIT | ... | 4.78 | ... |
71
+ | POS | ... | 3.80 | ... |
72
+ | PhysFormer | ... | 4.08 | ... |
73
+ | **Ours** | ... | **4.86** | ... |
74
+
75
+ **Table: Performance for different camera views and inference speed**
76
+
77
+ | Model | CPU Inference (s) | Size (Mb) | Frontal PPG MAE | Side PPG MAE |
78
+ |----------------|-------------------|-----------|-----------------|--------------|
79
+ | POS | 0.26 | 0 | 0.87 | 1.25 |
80
+ | PhysFormer | 0.93 | 28.4 | 0.46 | 0.97 |
81
+ | **Ours** | **0.15** | **3.9** | 0.68 | 1.10 |
82
+
83
+ Complete results, including biomarker evaluation, are presented in the paper.
84
 
85
  ## Citation
86
 
 
93
  journal={arXiv preprint arXiv:2508.17924},
94
  year={2024}
95
  }
96
+ ```