stealthgod commited on
Commit
328b09b
·
verified ·
1 Parent(s): ff75ed9

Add dataset card README

Browse files
Files changed (1) hide show
  1. README.md +206 -0
README.md CHANGED
@@ -1,3 +1,209 @@
1
  ---
2
  license: cc-by-4.0
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: cc-by-4.0
3
+ task_categories:
4
+ - other
5
+ task_ids: []
6
+ tags:
7
+ - gait-analysis
8
+ - biomechanics
9
+ - pose-estimation
10
+ - mediapipe
11
+ - blazepose
12
+ - wearable
13
+ - digital-health
14
+ - markerless
15
+ - movement-intelligence
16
+ - rehabilitation
17
+ - locomotion
18
+ - on-device-ml
19
+ language:
20
+ - en
21
+ size_categories:
22
+ - 1K<n<10K
23
+ pretty_name: Arisole StrideIQ Gait Dataset (v0.1 Seed Release)
24
+ dataset_info:
25
+ description: >
26
+ Markerless smartphone gait analysis dataset — 100+ sessions, 33-landmark
27
+ MediaPipe BlazePose poses, confidence-gated biomechanics, and Movement
28
+ Intelligence Index (MII) scores. Aggregate statistics only in v0.1;
29
+ clip-level benchmark planned for v0.2.
30
  ---
31
+
32
+ # Arisole StrideIQ Gait Dataset — v0.1 Seed Release
33
+
34
+ > **Paper:** *Toward an Open, Privacy-Preserving Benchmark for Markerless Gait Analysis*
35
+ > **Authors:** Varun Srivastava, Arisole
36
+ > **Version:** 0.1 (Seed Release — aggregate statistics, no per-clip data)
37
+ > **License:** CC BY 4.0
38
+ > **DOI:** *(pending Zenodo assignment)*
39
+
40
+ ---
41
+
42
+ ## Dataset Summary
43
+
44
+ The **Arisole StrideIQ Gait Dataset** is the first open, smartphone-native,
45
+ markerless gait-analysis benchmark derived from real-world walking sessions
46
+ captured entirely on consumer hardware — no wearables, no motion-capture suits,
47
+ no laboratory infrastructure required.
48
+
49
+ **v0.1 (this release)** publishes aggregate platform statistics from 100+
50
+ consented walking sessions captured using the Arisole StrideIQ mobile
51
+ application. It establishes the data schema, biomechanical pipeline, and
52
+ baseline distributions ahead of a planned v0.2 clip-level benchmark.
53
+
54
+ ### Why This Matters
55
+
56
+ Existing gait datasets (e.g., CASIA-B, CMU MoCap, DIRO) require laboratory
57
+ hardware costing tens of thousands of dollars. StrideIQ captures equivalent
58
+ biomechanical signals from a standard smartphone camera, opening gait analysis
59
+ to:
60
+
61
+ - Low-resource clinical settings globally
62
+ - Remote rehabilitation monitoring
63
+ - Robotics locomotion research (Open X-Embodiment compatible schema)
64
+ - Population-scale epidemiology
65
+
66
+ ---
67
+
68
+ ## Dataset Structure
69
+
70
+ ### v0.1 Contents (Aggregate Statistics)
71
+
72
+ | Field | Description |
73
+ |-------|-------------|
74
+ | `session_count` | 100+ walking sessions |
75
+ | `landmark_schema` | 33 MediaPipe BlazePose landmarks (x, y, z, visibility) |
76
+ | `biomechanical_features` | Stride length, cadence, step symmetry, trunk sway, knee flexion angle |
77
+ | `confidence_gating` | Frames with landmark visibility < 0.6 excluded |
78
+ | `MII_score` | Movement Intelligence Index — composite gait health score (0–100) |
79
+ | `platform_distributions` | Aggregate histograms of MII and feature distributions |
80
+
81
+ ### Coming in v0.2
82
+
83
+ - Clip-level landmark sequences (with explicit participant consent)
84
+ - Demographic metadata (age band, self-reported health condition category)
85
+ - Per-session biomechanical time-series
86
+ - Leaderboard for automated gait quality prediction
87
+
88
+ ---
89
+
90
+ ## Biomechanical Pipeline
91
+
92
+ ```
93
+ Smartphone Video
94
+
95
+
96
+ MediaPipe BlazePose (on-device inference)
97
+ │ 33 landmarks @ 30fps
98
+
99
+ Confidence Gate (visibility threshold 0.6)
100
+ │ Filters occluded/low-quality frames
101
+
102
+ Biomechanical Feature Extraction
103
+ ├─ Stride length estimation (hip–ankle geometry)
104
+ ├─ Cadence (step frequency via heel-strike detection)
105
+ ├─ Step symmetry (L/R stride time ratio)
106
+ ├─ Trunk sway (shoulder midpoint lateral displacement)
107
+ └─ Knee flexion angle (thigh–shin vectors)
108
+
109
+
110
+ Movement Intelligence Index (MII)
111
+ Weighted composite score — normalized to 0–100
112
+ Higher = more efficient, more symmetric gait
113
+ ```
114
+
115
+ **Key architectural insight (P2 companion paper):** The full biomechanical
116
+ pipeline runs entirely **on-device**. The landmark payload transmitted to the
117
+ cloud is ~130 KB/session vs. ~24.3 MB for the source video — a **~200×
118
+ compression** with zero raw biometric video leaving the device.
119
+
120
+ ---
121
+
122
+ ## Usage
123
+
124
+ ```python
125
+ from datasets import load_dataset
126
+
127
+ # Load v0.1 aggregate statistics
128
+ ds = load_dataset("ctechvent/arisole-strideiq-gait")
129
+ print(ds)
130
+ ```
131
+
132
+ > **Note:** v0.1 contains aggregate statistics and the data schema.
133
+ > Clip-level data will be added in v0.2. Subscribe to / watch this repository
134
+ > to be notified when v0.2 is released.
135
+
136
+ ---
137
+
138
+ ## Related Resources
139
+
140
+ | Resource | Link |
141
+ |----------|------|
142
+ | Companion Paper (P1) | *Toward an Open, Privacy-Preserving Benchmark for Markerless Gait Analysis* — Zenodo DOI (pending) |
143
+ | On-Device Architecture (P2) | *The Server Doesn't Need to See You Move* — Zenodo DOI (pending) |
144
+ | Global Health Context (P3) | *Movement Poverty* — Zenodo DOI (pending) |
145
+ | Arisole Website | [arisole.com](https://arisole.com) |
146
+ | arXiv Preprint | Pending endorsement (arXiv submission ID: 7864429) |
147
+
148
+ ---
149
+
150
+ ## Comparison to Existing Gait Datasets
151
+
152
+ | Dataset | Capture Method | Cost | Clip-Level | Smartphone | Open License |
153
+ |---------|---------------|------|-----------|-----------|-------------|
154
+ | CASIA-B | Multi-camera lab | $$$$ | ✅ | ❌ | ❌ |
155
+ | CMU MoCap | Optical MoCap | $$$$ | ✅ | ❌ | ✅ |
156
+ | TUG Dataset | Clinical sensors | $$$ | ✅ | ❌ | Varies |
157
+ | **StrideIQ (this)** | **Smartphone** | **$0** | **v0.2** | **✅** | **✅ CC-BY** |
158
+
159
+ ---
160
+
161
+ ## Data Collection & Privacy
162
+
163
+ All sessions captured via the Arisole StrideIQ app under informed consent.
164
+ v0.1 contains **aggregate statistics only** — no per-user or per-clip data is
165
+ included. The raw video never leaves the participant's device (on-device
166
+ inference architecture).
167
+
168
+ Institutional review: *(IRB/ethics review in progress for v0.2 clip release)*
169
+
170
+ ---
171
+
172
+ ## Citation
173
+
174
+ If you use this dataset in your research, please cite:
175
+
176
+ ```bibtex
177
+ @dataset{srivastava2026strideiq,
178
+ title = {Arisole StrideIQ Gait Dataset (v0.1 Seed Release)},
179
+ author = {Srivastava, Varun},
180
+ year = {2026},
181
+ publisher = {Hugging Face},
182
+ url = {https://huggingface.co/datasets/ctechvent/arisole-strideiq-gait},
183
+ version = {0.1},
184
+ license = {CC-BY-4.0}
185
+ }
186
+ ```
187
+
188
+ Companion paper citation:
189
+
190
+ ```bibtex
191
+ @article{srivastava2026openmarkerless,
192
+ title = {Toward an Open, Privacy-Preserving Benchmark for Markerless Gait Analysis},
193
+ author = {Srivastava, Varun},
194
+ journal = {arXiv preprint},
195
+ year = {2026},
196
+ note = {arXiv submission ID: 7864429, pending endorsement}
197
+ }
198
+ ```
199
+
200
+ ---
201
+
202
+ ## Maintainers
203
+
204
+ **Varun Srivastava** — Founder, Arisole
205
+ **Arisole / Ctech Ventures**
206
+ Contact: [move@arisole.com](mailto:move@arisole.com) | [arisole.com](https://arisole.com)
207
+
208
+ *Feedback, collaboration requests, and robotics/rehabilitation research
209
+ partnerships welcome.*