RS2002 commited on
Commit
1b210fc
·
verified ·
1 Parent(s): 99e72ab

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +97 -0
README.md ADDED
@@ -0,0 +1,97 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # WiGesture
2
+
3
+ The description is generated by Grok3.
4
+
5
+ ## Dataset Description
6
+
7
+ - **Homepage:** [SSC2025 Competition - Software Defined Network Contest | SDP Competition Platform](http://www.sdp8.net/Dataset?id=5d4ee7ca-d0b0-45e3-9510-abb6e9cdebf9)
8
+ - **Repository:** [CSI-BERT/WiGesture at main · RS2002/CSI-BERT](https://github.com/RS2002/CSI-BERT/tree/main/WiGesture)
9
+ - **Paper**: [Finding the Missing Data: A BERT-Inspired Approach Against Package Loss in Wireless Sensing](https://ieeexplore.ieee.org/document/10620769), IEEE INFOCOM DeepWireless Workshop 2024
10
+ - **Arxiv**: https://arxiv.org/abs/2403.12400
11
+ - **Contact:** [email protected]
12
+ - **Collectors:** Zijian Zhao, Tingwei Chen
13
+ - **Organization:** AI-RAN Lab (hosted by Prof. Guangxu Zhu) in SRIBD, CUHK(SZ)
14
+ - **Dataset Summary:**
15
+ The WiGesture dataset contains synchronized Channel State Information (CSI), Received Signal Strength Indicator (RSSI), and timestamp data collected using ESP32-S3 devices for WiFi-based human gesture recognition and people identification in a meeting room scenario. The dataset is divided into dynamic gestures (e.g., applause, waving) and static digital gestures (numbers 1–9), performed by eight individuals.
16
+
17
+ - **Tasks:** Gesture Recognition, People Identification, Cross-Domain Tasks.
18
+
19
+ ## Dataset Structure
20
+
21
+ ### Data Instances
22
+
23
+ Each instance is a `.csv` file representing a 60-second sample with the following columns:
24
+
25
+ - **seq**: Row number of the entry.
26
+ - **timestamp**: UTC+8 time of data collection.
27
+ - **local_timestamp**: ESP32 local time.
28
+ - **rssi**: Received Signal Strength Indicator.
29
+ - **data**: CSI data with 104 numbers representing 52 subcarriers, where each subcarrier's complex CSI value is computed as `a[2i] + a[2i+1]j`.
30
+ - **Other columns**: Additional ESP32 device information (e.g., MAC, MCS details).
31
+
32
+ ### Data Fields
33
+
34
+ | Field Name | Description |
35
+ | --------------- | ------------------------------------------------------------ |
36
+ | seq | Row number of the entry |
37
+ | timestamp | UTC+8 time of data collection |
38
+ | local_timestamp | ESP32 local time |
39
+ | rssi | Received Signal Strength Indicator |
40
+ | data | CSI data (104 numbers, representing 52 subcarriers as complex values) |
41
+ | Other columns | Additional ESP32 metadata (e.g., MAC address, MCS details) |
42
+
43
+ ### Data Splits
44
+
45
+ The dataset is organized into two main directories:
46
+
47
+ - **Dynamic**: Contains dynamic gestures (applause, circleclockwise, frontandafter, leftandright, upanddown, waveright) for 8 individuals (ID1–ID8).
48
+ - **Static**: Contains static digital gestures (Gesture1–Gesture9, representing numbers 1–9) for 8 individuals (ID1–ID8).
49
+
50
+ Each directory is structured by person ID, with `.csv` files named after the gesture performed.
51
+
52
+ ## Dataset Creation
53
+
54
+ ### Curation Rationale
55
+
56
+ The dataset was created to facilitate research on WiFi-based gesture recognition and people identification using low-cost ESP32-S3 devices, enabling applications in human-computer interaction and smart environments.
57
+
58
+ ### Source Data
59
+
60
+ - **Initial Data Collection:**
61
+ Data was collected in an indoor meeting room with a single transmitter and multiple receivers using ESP32-S3 devices. The setup included:
62
+ - **Frequency Band:** 2.4 GHz
63
+ - **Bandwidth:** 20 MHz (52 subcarriers)
64
+ - **Protocol:** 802.11n
65
+ - **Waveform:** OFDM
66
+ - **Sampling Rate:** ~100 Hz
67
+ - **Antenna Configuration:** 1 antenna per device
68
+ - **Environment:** Indoor with walls and a soft pad to prevent volunteer injuries.
69
+ - **Who are the source data producers?**
70
+ The data was collected by researchers, with volunteers performing gestures in a controlled meeting room environment.
71
+
72
+ ### Annotations
73
+
74
+ - **Annotation Process:**
75
+ Each `.csv` file is labeled with the gesture type (via filename) and person ID (via directory structure). No additional manual annotations were provided.
76
+ - **Who are the annotators?**
77
+ The dataset creators labeled the data based on the experimental setup.
78
+
79
+ ### Personal and Sensitive Information
80
+
81
+ The dataset includes person IDs (ID1–ID8) but does not contain personally identifiable information such as names or biometric data beyond gesture and CSI patterns.
82
+
83
+ ## Citation
84
+
85
+ ```bibtex
86
+ @INPROCEEDINGS{10620769,
87
+ author={Zhao, Zijian and Chen, Tingwei and Meng, Fanyi and Li, Hang and Li, Xiaoyang and Zhu, Guangxu},
88
+ booktitle={IEEE INFOCOM 2024 - IEEE Conference on Computer Communications Workshops (INFOCOM WKSHPS)},
89
+ title={Finding the Missing Data: A BERT-Inspired Approach Against Package Loss in Wireless Sensing},
90
+ year={2024},
91
+ volume={},
92
+ number={},
93
+ pages={1-6},
94
+ doi={10.1109/INFOCOMWKSHPS61880.2024.10620769}
95
+ }
96
+ ```
97
+