File size: 5,890 Bytes
671f1d6 9a67572 671f1d6 fd2073f a352c5f fd2073f a352c5f fd2073f cb1f0d1 e72de41 a352c5f fd2073f a352c5f fd2073f a352c5f fd2073f a352c5f fd2073f a352c5f fd2073f a352c5f fd2073f a352c5f fd2073f e296c24 fd2073f a352c5f fd2073f a352c5f fd2073f a352c5f fd2073f a352c5f fd2073f a352c5f fd2073f a352c5f fd2073f e72de41 a352c5f fd2073f ed67680 a352c5f fd2073f a352c5f fd2073f a352c5f fd2073f a352c5f fd2073f a352c5f fd2073f a352c5f 4eeb8c0 a352c5f fd2073f a352c5f fd2073f a352c5f fd2073f a352c5f fd2073f aa1dcf5 ed67680 a352c5f fd2073f aa1dcf5 9920d48 e296c24 d5fe35d e296c24 b09ed93 d5fe35d f1f1ae8 e296c24 f1f1ae8 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | ---
license: apache-2.0
language:
- en
tags:
- silent_speech
- speech
- EMG
- wearable
- neuromotor
- HMI
---
# SilentWear: An Ultra-Low Power Wearable Interface for EMG-Based Silent Speech Recognition
This repository provides a multi-session surface electromyography (EMG) dataset for vocalized and silent speech recognition, recorded using a wearable neckband interface.
The dataset is designed to support research in:
- EMG-based speech decoding
- Human–machine interaction (HMI)
- Assistive communication technologies
- Ultra-low-power wearable AI systems
The data were collected using **SilentWear**, an unobtrusive, ultra-low-power EMG neckband designed for silent and vocalized speech detection.


---
# Dataset Description
The dataset includes recordings from:
- **4 subjects** (3 male, 1 female)
- **Vocalized** and **silent** speech conditions
- **8 HMI commands**:
*up*, *down*, *left*, *right*, *start*, *stop*, *forward*, *backward*
plus a *rest* (no-speech) class
- **3 recording days** per subject
- **Multiple sessions, collected over 3 days**, each containing:
- 5 vocalized batches.
- 5 silent batches
- Each batch contains *20 repetitions* of each word, plus rest.
This structure enables evaluation under **multi-day conditions**, supporting research on robustness to electrode repositioning and inter-session variability.
Further details on the data collection methodology are available at:
https://arxiv.org/placeholder
---
# Repository Organization
The repository contains two subfolders:
### 1️⃣ `data_raw_and_filt`
This folder contains full-length EMG recordings for each subject,
condition, session, and batch.
Each file:
- Contains raw EMG signals
- Contains filtered EMG signals (4th-order high-pass at 20 Hz + 50 Hz notch)
- Is stored in `.h5` format\
- Uses the HDF5 key `"emg"`
-
Directory structure example:
```text
data_raw_and_filt/
└── S01/s
└── silent/
└── sess_1_batch_1.h5
.
.
└── sess_3_batch_5.h5
└── vocalized/
└── sess_1_batch_1.h5
.
.
└── sess_3_batch_5.h5
└── S02
└── S03
└── S04
```
------------------------------------------------------------------------
#### Example: Loading a File
``` python
import pandas as pd
df = pd.read_hdf("data_raw_and_filt/S01/silent/sess_1_batch_1.h5", key="emg")
df.head()
```
------------------------------------------------------------------------
#### File Content Structure (`data_raw_and_filt`)
Each `.h5` file contains:
| Group | Columns | Description |
| ------------ | ------------------------ | ------------------------------- |
| Raw EMG | `Ch_0`–`Ch_15` | Raw sEMG samples |
| Filtered EMG | `Ch_0_filt`–`Ch_15_filt` | High-pass (20 Hz) + 50 Hz notch |
| Labels | `Label_int`, `Label_str` | Integer and string class labels |
| Metadata | `session_id`, `batch_id` | Session and batch identifiers |
### 2️⃣ `wins_and_features`
- Non-overlapping windowed segments
- Raw and filtered signals
- Extracted time-frequency features
These files can be directly used for model training or benchmarking.
---
# Code and Usage
The dataset is designed to be used in conjunction with the SilentWear repository:
https://github.com/pulp-bio/silent_wear
Please refer to the repository `README.md` for:
- Data loading utilities
- Preprocessing pipelines
- Training scripts
- Evaluation scripts
The repository creates the files contained in `wins_and_features` folder; these files are then used for model training.
Alternatively, you may directly use the `data_raw_and_filt` folder to:
- Build custom dataloaders
- Train your own architectures
- Benchmark novel EMG decoding methods
---
# Contributing
We aim to promote standardized evaluation and fair comparison across models.
We strongly encourage contributions of trained models and evaluation results to:
https://github.com/pulp-bio/silent_wear
Please refer to the repository README for submission guidelines.
---
# Citation
If you use this dataset, please cite:
```bibtex
@online{spacone_silentwear_26,
author = {Spacone, Giusy and Frey, Sebastian and Pollo, Giovanni and Burrello, Alessio and Pagliari, J. Daniele and Kartsch, Victor and Cossettini, Andrea and Benini, Luca},
title = {SilentWear: An Ultra-Low Power Wearable Interface for EMG-Based Silent Speech Recognition},
year = {2026},
url = {coming soon}
}
```
## 📄 License
See the `LICENSE` file for the full license text.
This project makes use of the following licenses:
- Apache License 2.0 — See the `LICENSE` file for the full license text.
- Images are under the the Creative Commons Attribution 4.0 International License - see the `LICENSE.images` file for details.
## 👨💻 Contributors
_Silent-Wear_ has been developed at _ETH Zürich_, by the [PULP-Bio](https://iis-projects.ee.ethz.ch/index.php?title=Biomedical_Circuits,_Systems,_and_Applications):
- [Giusy Spacone](https://scholar.google.com/citations?user=dGE8uMEAAAAJ&hl=en) (Conceptualization, Experimental Design, Development)
- [Sebastian Frey](https://scholar.google.com/citations?user=7jhiqz4AAAAJ&hl=en) (PCB design, Firmware, Documentation)
- Fiona Meier (Hardware Development)
- [Giovanni Pollo](https://scholar.google.com/citations?hl=it&user=znSV3doAAAAJ&view_op=list_works&sortby=pubdate) (Experimental Desing, Data Collection, Documentation)
- [Prof. Luca Benini](https://scholar.google.com/citations?user=8riq3sYAAAAJ&hl=en)(Supervision, Conceptualization)
- [Dr. Andrea Cossettini](https://scholar.google.com/citations?user=d8O91jIAAAAJ&hl=en)(Supervision, Project administration)
|