gspacone commited on
Commit
a352c5f
·
verified ·
1 Parent(s): 0a36c69

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +172 -7
README.md CHANGED
@@ -1,18 +1,183 @@
1
  ---
2
  license: apache-2.0
3
  ---
4
- # SilentWear
5
- ## Speech Recognition from EMG Signals
6
 
7
- SilentWear is a dataset for vocalized and silent speech recognition from surface electromyography (sEMG) signals, recorded from a wearable neckband.
 
 
8
 
9
  The dataset is designed to support research in:
10
 
11
- - Silent speech interfaces
12
  - EMG-based speech decoding
13
  - Human–machine interaction (HMI)
14
- - Wearable bio-signal processing
15
  - Assistive communication technologies
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
16
 
17
- ⚠️ **Status: the dataset will be released after review**
18
- ---
 
1
  ---
2
  license: apache-2.0
3
  ---
 
 
4
 
5
+ # SilentWear: An Ultra-Low Power Wearable Interface for EMG-Based Silent Speech Recognition
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
+ The data were collected using **SilentWear**, an unobtrusive, ultra-low-power EMG neckband designed for silent and vocalized speech detection.
17
+
18
+ <p align="center" style="white-space: nowrap;">
19
+ <img src="images/silent_wear_interface.png"
20
+ alt="SilentWear Device"
21
+ style="height:300px; display:inline-block; vertical-align:middle;" />
22
+ <img src="images/signals.png"
23
+ alt="SilentWear Signals"
24
+ style="height:300px; display:inline-block; vertical-align:middle;" />
25
+ </p>
26
+
27
+ ---
28
+
29
+ # Dataset Description
30
+
31
+ The dataset includes recordings from:
32
+
33
+ - **4 subjects** (3 male, 1 female)
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
+ This structure enables evaluation under **multi-day conditions**, supporting research on robustness to electrode repositioning and inter-session variability.
45
+
46
+ Further details on the data collection methodology are available at:
47
+ https://arxiv.org/placeholder
48
+
49
+ ---
50
+
51
+ # Repository Organization
52
+
53
+ Main folder: `silentwear_emg_hmi_26`
54
+
55
+ It contains two subfolders:
56
+ ### 1️⃣ `data_raw_and_filt`
57
+
58
+ This folder contains full-length EMG recordings for each subject,
59
+ condition, session, and batch.
60
+
61
+ Each file:
62
+ - Contains raw EMG signals
63
+ - Contains filtered EMG signals (4th-order high-pass at 20 Hz + 50 Hz notch)
64
+ - Is stored in `.h5` format\
65
+ - Uses the HDF5 key `"emg"`
66
+
67
+ Directory structure example:
68
+
69
+ ```text
70
+ data_raw_and_filt/
71
+ └── S01/s
72
+ └── silent/
73
+ └── sess_1_batch_1.h5
74
+ .
75
+ .
76
+ └── sess_3_batch_5.h5
77
+ └── vocalized/
78
+ └── sess_1_batch_1.h5
79
+ .
80
+ .
81
+ └── sess_3_batch_5.h5
82
+ └── S02
83
+ └── S03
84
+ └── S04
85
+
86
+ ```
87
+
88
+ ------------------------------------------------------------------------
89
+
90
+ #### Example: Loading a File
91
+
92
+ ``` python
93
+ import pandas as pd
94
+
95
+ df = pd.read_hdf("data_raw_and_filt/S01/silent/sess_1_batch_1.h5", key="emg")
96
+ df.head()
97
+ ```
98
+
99
+ ------------------------------------------------------------------------
100
+
101
+ #### File Content Structure (`data_raw_and_filt`)
102
+
103
+ Each `.h5` file contains:
104
+ ```
105
+ ------------------------------------------------------------------------------
106
+ Columns Description
107
+ ---------------- ----------------------- ------------------------------
108
+ Raw EMG `Ch_0`--`Ch_15` Raw data
109
+
110
+ Filtered EMG `Ch_0_filt`--`Ch_15_filt` High-pass + notch filtered data
111
+
112
+
113
+ Labels `Label_int`, Integer Labels
114
+ `Label_str` String Labels
115
+
116
+ Session Metadata `session_id` Recording session identifier
117
+
118
+ Batch Metadata `batch_id` Batch identifier within session
119
+ -------------------------------------------------------------------------------
120
+ ```
121
+
122
+ ### 2️⃣ `wins_and_features`
123
+ - Non-overlapping windowed segments
124
+ - Raw and filtered signals
125
+ - Extracted time-frequency features
126
+
127
+ These files can be directly used for model training or benchmarking.
128
+
129
+ ---
130
+
131
+ # Code and Usage
132
+
133
+ The dataset is designed to be used in conjunction with the SilentWear repository:
134
+
135
+ https://github.com/pulp-bio/silent_wear
136
+
137
+ Please refer to the repository `README.md` for:
138
+
139
+ - Data loading utilities
140
+ - Preprocessing pipelines
141
+ - Training scripts
142
+ - Evaluation scripts
143
+
144
+ The repository creates the files contained in `wins_and_features` folder; these files are then used for model training.
145
+
146
+ Alternatively, you may directly use the `data_raw_and_filt` folder to:
147
+
148
+ - Build custom dataloaders
149
+ - Train your own architectures
150
+ - Benchmark novel EMG decoding methods
151
+
152
+ ---
153
+
154
+
155
+ #
156
+
157
+ # Contributing
158
+
159
+ We aim to promote standardized evaluation and fair comparison across models.
160
+
161
+ We strongly encourage contributions of trained models and evaluation results to:
162
+
163
+ https://github.com/pulp-bio/silent_wear
164
+
165
+ Please refer to the repository README for submission guidelines.
166
+
167
+ ---
168
+
169
+ # Citation
170
+
171
+ If you use this dataset, please cite:
172
+
173
+ ```bibtex
174
+ @online{spacone_silentwear_26,
175
+ 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},
176
+ title = {SilentWear: An Ultra-Low Power Wearable Interface for EMG-Based Silent Speech Recognition},
177
+ year = {202},
178
+ url = {https://arxiv.org/placeholder}
179
+ }
180
+ ```
181
+
182
+
183