RS2002 commited on
Commit
8b7e230
·
verified ·
1 Parent(s): 2d3ff87

Create README.md

Browse files
Files changed (1) hide show
  1. README.md +94 -0
README.md ADDED
@@ -0,0 +1,94 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # WiFall
2
+
3
+ The description is generated by Grok3.
4
+
5
+ ## Dataset Description
6
+
7
+ - **Repository:** [KNN-MMD/WiFall at main · RS2002/KNN-MMD](https://github.com/RS2002/KNN-MMD/tree/main/WiFall)
8
+ - **Paper:** [KNN-MMD: Cross Domain Wireless Sensing via Local Distribution Alignment](https://arxiv.org/abs/2412.04783)
9
+ - **Contact:** [[email protected]](mailto:[email protected])
10
+ - **Collectors:** Zijian Zhao, Tingwei Chen
11
+ - **Organization:** AI-RAN Lab (hosted by Prof. Guangxu Zhu) in SRIBD, CUHK(SZ)
12
+ - **Dataset Summary:**
13
+ The WiFall dataset contains synchronized Channel State Information (CSI), Received Signal Strength Indicator (RSSI), and timestamp data collected using ESP32-S3 devices for WiFi-based fall detection, action recognition, and people identification in a meeting room scenario. The dataset includes actions (fall, jump, sit, stand, walk) performed by ten individuals.
14
+ - **Tasks:** Fall Detection, Action Recognition, People Identification, Cross-Domain Tasks.
15
+
16
+ ## Dataset Structure
17
+
18
+ ### Data Instances
19
+
20
+ Each instance is a `.csv` file representing a 60-second sample with the following columns:
21
+
22
+ - **seq**: Row number of the entry.
23
+ - **timestamp**: UTC+8 time of data collection.
24
+ - **local_timestamp**: ESP32 local time.
25
+ - **rssi**: Received Signal Strength Indicator.
26
+ - **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`.
27
+ - **Other columns**: Additional ESP32 device information (e.g., MAC, MCS details).
28
+
29
+ ### Data Fields
30
+
31
+ | Field Name | Description |
32
+ | --------------- | ------------------------------------------------------------ |
33
+ | seq | Row number of the entry |
34
+ | timestamp | UTC+8 time of data collection |
35
+ | local_timestamp | ESP32 local time |
36
+ | rssi | Received Signal Strength Indicator |
37
+ | data | CSI data (104 numbers, representing 52 subcarriers as complex values) |
38
+ | Other columns | Additional ESP32 metadata (e.g., MAC address, MCS details) |
39
+
40
+ ### Data Splits
41
+
42
+ The dataset is organized by person ID (ID0–ID9), with `.csv` files named after the action performed:
43
+
44
+ - **Actions**: fall, jump, sit, stand, walk for 10 individuals (ID0–ID9).
45
+
46
+ Each directory is structured by person ID, with `.csv` files named after the action performed.
47
+
48
+ ## Dataset Creation
49
+
50
+ ### Curation Rationale
51
+
52
+ The dataset was created to facilitate research on WiFi-based fall detection, action recognition, and people identification using low-cost ESP32-S3 devices, enabling applications in healthcare, human-computer interaction, and smart environments.
53
+
54
+ ### Source Data
55
+
56
+ - Initial Data Collection:
57
+
58
+ Data was collected in an indoor meeting room with a single transmitter and multiple receivers using ESP32-S3 devices. The setup included:
59
+
60
+ - **Frequency Band:** 2.4 GHz
61
+ - **Bandwidth:** 20 MHz (52 subcarriers)
62
+ - **Protocol:** 802.11n
63
+ - **Waveform:** OFDM
64
+ - **Sampling Rate:** ~100 Hz
65
+ - **Antenna Configuration:** 1 antenna per device
66
+ - **Environment:** Indoor with walls and a soft pad to prevent volunteer injuries.
67
+
68
+ - **Who are the source data producers?**
69
+ The data was collected by researchers, with volunteers performing actions in a controlled meeting room environment.
70
+
71
+ ### Annotations
72
+
73
+ - **Annotation Process:**
74
+ Each `.csv` file is labeled with the action type (via filename) and person ID (via directory structure). No additional manual annotations were provided.
75
+ - **Who are the annotators?**
76
+ The dataset creators labeled the data based on the experimental setup.
77
+
78
+ ### Personal and Sensitive Information
79
+
80
+ The dataset includes person IDs (ID0–ID9) but does not contain personally identifiable information such as names or biometric data beyond action and CSI patterns.
81
+
82
+ ## Citation
83
+
84
+ ```bibtex
85
+ @misc{zhao2025knnmmdcrossdomainwireless,
86
+ title={KNN-MMD: Cross Domain Wireless Sensing via Local Distribution Alignment},
87
+ author={Zijian Zhao and Zhijie Cai and Tingwei Chen and Xiaoyang Li and Hang Li and Qimei Chen and Guangxu Zhu},
88
+ year={2025},
89
+ eprint={2412.04783},
90
+ archivePrefix={arXiv},
91
+ primaryClass={cs.CV},
92
+ url={https://arxiv.org/abs/2412.04783},
93
+ }
94
+ ```