Update README.md
Browse files
README.md
CHANGED
|
@@ -1,182 +1,138 @@
|
|
|
|
|
| 1 |
---
|
| 2 |
license: apache-2.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
| 4 |
|
| 5 |
-
# SilentWear: An Ultra-Low
|
| 6 |
-
|
| 7 |
-
This repository provides a multi-session surface electromyography (EMG) dataset for vocalized and silent speech recognition, recorded using a wearable neckband interface.
|
| 8 |
-
|
| 9 |
-
The dataset is designed to support research in:
|
| 10 |
-
|
| 11 |
-
- EMG-based speech decoding
|
| 12 |
-
- Human–machine interaction (HMI)
|
| 13 |
-
- Assistive communication technologies
|
| 14 |
-
- Ultra-low-power wearable AI systems
|
| 15 |
|
| 16 |
-
|
| 17 |
|
| 18 |
-
|
| 19 |
-
|
| 20 |
-
|
| 21 |
-
|
| 22 |
-
|
| 23 |
-
alt="SilentWear Signals"
|
| 24 |
-
style="height:300px; display:inline-block; vertical-align:middle;" />
|
| 25 |
-
</p>
|
| 26 |
|
| 27 |
---
|
| 28 |
|
| 29 |
-
|
| 30 |
|
| 31 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 32 |
|
| 33 |
-
-
|
| 34 |
-
- **Vocalized** and **silent** speech conditions
|
| 35 |
-
- **8 HMI commands**:
|
| 36 |
-
*up*, *down*, *left*, *right*, *start*, *stop*, *forward*, *backward*
|
| 37 |
-
plus a *rest* (no-speech) class
|
| 38 |
-
- **3 recording days** per subject
|
| 39 |
-
- **Multiple sessions, collected over 3 days**, each containing:
|
| 40 |
-
- 5 vocalized batches.
|
| 41 |
-
- 5 silent batches
|
| 42 |
-
- Each batch contains *20 repetitions* of each word, plus rest.
|
| 43 |
|
| 44 |
-
|
| 45 |
-
|
| 46 |
-
Further details on the data collection methodology are available at:
|
| 47 |
https://arxiv.org/placeholder
|
| 48 |
|
| 49 |
---
|
| 50 |
|
| 51 |
-
|
| 52 |
|
|
|
|
| 53 |
|
| 54 |
-
|
| 55 |
-
### 1️⃣ `data_raw_and_filt`
|
| 56 |
|
| 57 |
-
|
| 58 |
-
condition, session, and batch.
|
| 59 |
|
| 60 |
-
|
| 61 |
-
-
|
| 62 |
-
-
|
| 63 |
-
-
|
| 64 |
-
-
|
| 65 |
|
| 66 |
-
|
| 67 |
|
| 68 |
-
```text
|
| 69 |
data_raw_and_filt/
|
| 70 |
-
└── S01/
|
| 71 |
-
|
| 72 |
-
|
| 73 |
-
|
| 74 |
-
.
|
| 75 |
-
└── sess_3_batch_5.h5
|
| 76 |
└── vocalized/
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
-
└──
|
| 82 |
-
└── S03
|
| 83 |
-
└── S04
|
| 84 |
-
|
| 85 |
-
```
|
| 86 |
-
|
| 87 |
-
------------------------------------------------------------------------
|
| 88 |
|
| 89 |
-
|
| 90 |
|
| 91 |
-
``` python
|
| 92 |
import pandas as pd
|
| 93 |
|
| 94 |
df = pd.read_hdf("data_raw_and_filt/S01/silent/sess_1_batch_1.h5", key="emg")
|
| 95 |
-
df.head()
|
| 96 |
-
```
|
| 97 |
|
| 98 |
-
|
| 99 |
-
|
| 100 |
-
#### File Content Structure (`data_raw_and_filt`)
|
| 101 |
-
|
| 102 |
-
Each `.h5` file contains:
|
| 103 |
-
```
|
| 104 |
-
------------------------------------------------------------------------------
|
| 105 |
-
Columns Description
|
| 106 |
-
---------------- ----------------------- ------------------------------
|
| 107 |
-
Raw EMG `Ch_0`--`Ch_15` Raw data
|
| 108 |
-
|
| 109 |
-
Filtered EMG `Ch_0_filt`--`Ch_15_filt` High-pass + notch filtered data
|
| 110 |
-
|
| 111 |
-
|
| 112 |
-
Labels `Label_int`, Integer Labels
|
| 113 |
-
`Label_str` String Labels
|
| 114 |
-
|
| 115 |
-
Session Metadata `session_id` Recording session identifier
|
| 116 |
|
| 117 |
-
|
| 118 |
-
-------------------------------------------------------------------------------
|
| 119 |
-
```
|
| 120 |
|
| 121 |
-
|
| 122 |
-
- Non-overlapping windowed segments
|
| 123 |
-
- Raw and filtered signals
|
| 124 |
-
- Extracted time-frequency features
|
| 125 |
|
| 126 |
-
These files can be directly used for model training
|
| 127 |
|
| 128 |
---
|
| 129 |
|
| 130 |
-
|
| 131 |
-
|
| 132 |
-
The dataset is designed to be used in conjunction with the SilentWear repository:
|
| 133 |
|
|
|
|
| 134 |
https://github.com/pulp-bio/silent_wear
|
| 135 |
|
| 136 |
-
|
| 137 |
-
|
| 138 |
-
-
|
| 139 |
-
-
|
| 140 |
-
-
|
| 141 |
-
- Evaluation scripts
|
| 142 |
-
|
| 143 |
-
The repository creates the files contained in `wins_and_features` folder; these files are then used for model training.
|
| 144 |
-
|
| 145 |
-
Alternatively, you may directly use the `data_raw_and_filt` folder to:
|
| 146 |
-
|
| 147 |
-
- Build custom dataloaders
|
| 148 |
-
- Train your own architectures
|
| 149 |
-
- Benchmark novel EMG decoding methods
|
| 150 |
|
| 151 |
---
|
| 152 |
|
|
|
|
| 153 |
|
| 154 |
-
|
| 155 |
-
|
| 156 |
-
|
| 157 |
|
| 158 |
-
|
| 159 |
-
|
| 160 |
-
We strongly encourage contributions of trained models and evaluation results to:
|
| 161 |
|
| 162 |
-
|
| 163 |
|
| 164 |
-
|
|
|
|
|
|
|
|
|
|
| 165 |
|
| 166 |
---
|
| 167 |
|
| 168 |
-
|
| 169 |
-
|
| 170 |
-
If you use this dataset, please cite:
|
| 171 |
|
| 172 |
-
|
| 173 |
-
@online{spacone_silentwear_26,
|
| 174 |
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},
|
| 175 |
-
title
|
| 176 |
-
year
|
| 177 |
-
url
|
| 178 |
}
|
| 179 |
-
```
|
| 180 |
-
|
| 181 |
-
|
| 182 |
-
|
|
|
|
| 1 |
+
|
| 2 |
---
|
| 3 |
license: apache-2.0
|
| 4 |
+
language:
|
| 5 |
+
- en
|
| 6 |
+
tags:
|
| 7 |
+
- biosignals
|
| 8 |
+
- emg
|
| 9 |
+
- silent-speech
|
| 10 |
+
- speech-recognition
|
| 11 |
+
- human-machine-interaction
|
| 12 |
+
- wearable
|
| 13 |
+
- time-series
|
| 14 |
+
task_categories:
|
| 15 |
+
- audio-classification
|
| 16 |
+
- text-classification
|
| 17 |
+
- signal-processing
|
| 18 |
+
pretty_name: SilentWear EMG Dataset
|
| 19 |
+
dataset_type: other
|
| 20 |
---
|
| 21 |
|
| 22 |
+
# SilentWear: An Ultra-Low-Power Wearable Interface for EMG-Based Silent Speech Recognition
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 23 |
|
| 24 |
+
This repository provides a multi-session surface electromyography (sEMG) dataset for vocalized and silent speech recognition, recorded using a wearable neckband interface.
|
| 25 |
|
| 26 |
+
The dataset supports research in:
|
| 27 |
+
- EMG-based speech decoding
|
| 28 |
+
- Human–machine interaction (HMI)
|
| 29 |
+
- Assistive communication technologies
|
| 30 |
+
- Ultra-low-power wearable AI systems
|
|
|
|
|
|
|
|
|
|
| 31 |
|
| 32 |
---
|
| 33 |
|
| 34 |
+
## Dataset Summary
|
| 35 |
|
| 36 |
+
- Subjects: 4 (3 male, 1 female)
|
| 37 |
+
- Conditions: vocalized and silent
|
| 38 |
+
- Commands (8): up, down, left, right, start, stop, forward, backward
|
| 39 |
+
- Additional class: rest (no speech)
|
| 40 |
+
- Days: 3 recording days per subject
|
| 41 |
+
- Sessions:
|
| 42 |
+
- 5 vocalized batches per session
|
| 43 |
+
- 5 silent batches per session
|
| 44 |
+
- 20 repetitions per word per batch
|
| 45 |
|
| 46 |
+
This structure enables multi-day robustness evaluation (e.g., electrode repositioning and session variability).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 47 |
|
| 48 |
+
Paper link (replace with final link if needed):
|
|
|
|
|
|
|
| 49 |
https://arxiv.org/placeholder
|
| 50 |
|
| 51 |
---
|
| 52 |
|
| 53 |
+
## Repository Structure
|
| 54 |
|
| 55 |
+
### 1) data_raw_and_filt
|
| 56 |
|
| 57 |
+
Full-length EMG recordings stored as HDF5 (.h5) files using key "emg".
|
|
|
|
| 58 |
|
| 59 |
+
Each file contains:
|
|
|
|
| 60 |
|
| 61 |
+
- Raw EMG: Ch_0 – Ch_15
|
| 62 |
+
- Filtered EMG: Ch_0_filt – Ch_15_filt (4th-order high-pass @ 20 Hz + 50 Hz notch)
|
| 63 |
+
- Labels: Label_int, Label_str
|
| 64 |
+
- Session metadata: session_id
|
| 65 |
+
- Batch metadata: batch_id
|
| 66 |
|
| 67 |
+
Example:
|
| 68 |
|
|
|
|
| 69 |
data_raw_and_filt/
|
| 70 |
+
└── S01/
|
| 71 |
+
├── silent/
|
| 72 |
+
│ ├── sess_1_batch_1.h5
|
| 73 |
+
│ └── ...
|
|
|
|
|
|
|
| 74 |
└── vocalized/
|
| 75 |
+
├── sess_1_batch_1.h5
|
| 76 |
+
└── ...
|
| 77 |
+
└── S02/
|
| 78 |
+
└── S03/
|
| 79 |
+
└── S04/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 80 |
|
| 81 |
+
Example loading:
|
| 82 |
|
|
|
|
| 83 |
import pandas as pd
|
| 84 |
|
| 85 |
df = pd.read_hdf("data_raw_and_filt/S01/silent/sess_1_batch_1.h5", key="emg")
|
| 86 |
+
print(df.head())
|
|
|
|
| 87 |
|
| 88 |
+
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 89 |
|
| 90 |
+
### 2) wins_and_features
|
|
|
|
|
|
|
| 91 |
|
| 92 |
+
Contains:
|
| 93 |
+
- Non-overlapping windowed segments
|
| 94 |
+
- Raw and filtered signals
|
| 95 |
+
- Extracted time-frequency features
|
| 96 |
|
| 97 |
+
These files can be directly used for model training and benchmarking.
|
| 98 |
|
| 99 |
---
|
| 100 |
|
| 101 |
+
## Related Code
|
|
|
|
|
|
|
| 102 |
|
| 103 |
+
Main repository:
|
| 104 |
https://github.com/pulp-bio/silent_wear
|
| 105 |
|
| 106 |
+
Includes:
|
| 107 |
+
- Data loaders
|
| 108 |
+
- Preprocessing pipelines
|
| 109 |
+
- Training scripts
|
| 110 |
+
- Evaluation scripts
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 111 |
|
| 112 |
---
|
| 113 |
|
| 114 |
+
## Intended Use
|
| 115 |
|
| 116 |
+
- Silent speech command classification
|
| 117 |
+
- Cross-session robustness studies
|
| 118 |
+
- Low-power wearable EMG decoding research
|
| 119 |
|
| 120 |
+
---
|
|
|
|
|
|
|
| 121 |
|
| 122 |
+
## Limitations
|
| 123 |
|
| 124 |
+
- Small number of subjects (n=4)
|
| 125 |
+
- Single sensing configuration (neckband)
|
| 126 |
+
- Fixed vocabulary command set
|
| 127 |
+
- Cross-user generalization may be limited
|
| 128 |
|
| 129 |
---
|
| 130 |
|
| 131 |
+
## Citation
|
|
|
|
|
|
|
| 132 |
|
| 133 |
+
@online{spacone_silentwear,
|
|
|
|
| 134 |
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},
|
| 135 |
+
title = {SilentWear: An Ultra-Low Power Wearable Interface for EMG-Based Silent Speech Recognition},
|
| 136 |
+
year = {2026},
|
| 137 |
+
url = {https://arxiv.org/placeholder}
|
| 138 |
}
|
|
|
|
|
|
|
|
|
|
|
|