LITF-PA-2026-001 · Wearables / HealthTech

System and Method for Continuous Neurodegeneration Screening via Consumer Wearable Gait Microanalysis

Wearable IMU sensor system for gait analysis
⚖️ Prior Art Notice: This document is published as defensive prior art under 35 U.S.C. § 102(a)(1). The inventions described herein are dedicated to the public domain as of the publication date above. This disclosure is intended to prevent the patenting of these concepts by any party.

Abstract

Disclosed is a system and method for continuous, passive screening for early-stage neurodegenerative conditions using inertial measurement unit (IMU) data from consumer wearable devices worn at the wrist or ankle. The system employs an on-device temporal convolutional network (TCN) to extract gait micro-features, including stride interval variability, swing phase asymmetry, and double-support time fluctuation, from accelerometer and gyroscope signals sampled at 50-200 Hz during natural ambulation. A longitudinal risk score is computed by comparing current gait signatures against a personalized baseline established during a 14-day calibration period, with drift detection algorithms compensating for sensor degradation and seasonal behavioral changes. The system generates alerts when gait deterioration patterns match profiles associated with Parkinson's disease (PD), Alzheimer's disease (AD), or normal pressure hydrocephalus (NPH), recommending clinical evaluation without rendering a diagnosis.

Field of the Invention

This invention relates to digital biomarker extraction from consumer wearable devices, specifically to the use of inertial measurement unit data for longitudinal neurological health monitoring in non-clinical settings.

Background

Neurodegenerative diseases affect approximately 55 million people worldwide, with the majority diagnosed only after significant neuronal loss has already occurred. Parkinson's disease motor symptoms typically present after 60-80% of dopaminergic neurons in the substantia nigra have degenerated (Postuma et al., Lancet Neurology 2017). Alzheimer's disease pathology begins 15-20 years before clinical diagnosis (Jack et al., Lancet Neurology 2010).

Gait analysis is a well-established biomarker for neurodegeneration. Research from the Mayo Clinic Study of Aging (Savica et al., 2019) demonstrated that quantitative gait changes precede PD diagnosis by up to 10 years. Stride-to-stride variability, measured as the coefficient of variation (CoV) of stride intervals, increases significantly in pre-clinical PD (CoV > 3.5% vs. healthy < 2.0%) and early AD (Beauchet et al., Journal of Neural Transmission 2013).

Current clinical gait analysis requires instrumented walkways (GAITRite, Zeno) costing $25,000-$100,000, or motion capture systems (Vicon, OptiTrack) costing $50,000-$500,000. These assessments are episodic, typically performed once per clinical visit. Consumer wearables containing 6-axis IMUs (accelerometer + gyroscope) are now worn by over 1.1 billion people globally, but no existing system extracts neurodegeneration-specific gait biomarkers from this data on-device.

Existing wearable gait research includes:

The gap in the art is a complete system that: (a) extracts neurodegeneration-specific gait micro-features from consumer-grade IMU data, (b) runs inference entirely on-device to preserve privacy, (c) maintains personalized longitudinal baselines with drift compensation, and (d) maps gait deterioration patterns to specific neurodegenerative condition profiles.

Detailed Description

1. Data Acquisition Layer

The system operates on raw IMU data from a consumer wearable device containing a 3-axis accelerometer and 3-axis gyroscope sampling at 50 Hz minimum (optimal: 100-200 Hz). The device may be worn at the wrist (smartwatch form factor) or ankle (fitness band form factor). Wrist placement requires an additional kinematic chain model to infer lower-limb gait parameters from upper-limb motion; ankle placement provides direct measurement.

A gait detection classifier, implemented as a lightweight 1D convolutional neural network (CNN) with fewer than 50,000 parameters, continuously monitors the IMU stream and identifies walking epochs. The classifier distinguishes walking from running, stair climbing, cycling, and stationary activities using a sliding window of 256 samples (approximately 2.5 seconds at 100 Hz) with 50% overlap. Only confirmed walking epochs exceeding 30 continuous seconds are passed to the feature extraction pipeline, filtering out incidental steps and transitions.

2. Gait Micro-Feature Extraction

From each qualifying walking epoch, the system extracts the following micro-features using a temporal convolutional network (TCN) with dilated causal convolutions:

3. On-Device Inference Architecture

The TCN model is quantized to INT8 using post-training quantization and deployed via TensorFlow Lite Micro or equivalent on-device runtime. Model size: approximately 200 KB. Inference latency: < 50 ms per walking epoch on ARM Cortex-M55 class processors (present in current-generation wearables including Apple Watch S9, Samsung Galaxy Watch 6, and Google Pixel Watch 2). The model processes each walking epoch and outputs the six micro-feature values plus a confidence score.

All computation occurs on-device. Raw IMU data never leaves the device. Only aggregated daily feature summaries (six floating-point values per day plus metadata) are optionally synced to a companion phone application for visualization.

4. Longitudinal Baseline and Drift Compensation

During an initial 14-day calibration period, the system establishes a personalized baseline for each micro-feature. The baseline is represented as a per-feature distribution (mean, standard deviation, 5th/95th percentiles) computed from all qualifying walking epochs in the calibration window.

To compensate for non-pathological drift sources:

5. Neurodegeneration Risk Scoring

A composite Neurodegeneration Risk Score (NRS) is computed weekly as a weighted combination of z-scores for each micro-feature relative to the personalized baseline:

NRS = Σ(w_i × max(0, z_i)) for i in {SIV, SPA, DSTR, GRI_inv, HR_inv, TSE_inv}

Where z_i is the z-score of the current 7-day rolling average relative to the calibration baseline, w_i are condition-specific weights, and _inv denotes features where deterioration corresponds to decreasing values (inverted before z-score computation). Weights are pre-trained on labeled gait datasets from the PhysioNet Gait in Parkinson's Disease Database and the PhysioNet Gait in Neurodegenerative Disease Database.

Three condition-specific sub-scores are computed using different weight vectors optimized for PD (emphasizing SIV, GRI, HR), AD (emphasizing SIV, DSTR, TSE), and NPH (emphasizing SPA, DSTR). An alert is generated when any sub-score exceeds a configurable threshold (default: z > 2.0 sustained for 4+ consecutive weeks), recommending clinical evaluation without rendering a diagnosis.

6. Figures Description

Claims

  1. A method for screening for neurodegenerative conditions using a consumer wearable device, comprising: continuously acquiring inertial measurement unit data from a wearable device during natural ambulation; identifying walking epochs using an on-device gait detection classifier; extracting a plurality of gait micro-features from each walking epoch using a temporal convolutional network executed on-device; comparing said micro-features against a personalized longitudinal baseline; and computing a neurodegeneration risk score based on sustained deviation from said baseline.
  2. The method of claim 1, wherein said gait micro-features comprise stride interval variability, swing phase asymmetry, double support time ratio, gait regularity index, harmonic ratio, and trunk sway entropy.
  3. The method of claim 1, wherein said personalized longitudinal baseline is established during a calibration period and updated with drift compensation accounting for sensor aging, seasonal variation, and acute confounding factors.
  4. The method of claim 1, wherein said neurodegeneration risk score comprises condition-specific sub-scores for Parkinson's disease, Alzheimer's disease, and normal pressure hydrocephalus, each computed using different weight vectors applied to the gait micro-feature z-scores.
  5. The method of claim 1, wherein all inference computation occurs on-device and raw inertial measurement unit data does not leave the device.
  6. A system for passive neurodegeneration screening comprising: a consumer wearable device with a 6-axis inertial measurement unit; an on-device gait detection classifier; a quantized temporal convolutional network for gait micro-feature extraction; a longitudinal baseline engine with drift compensation; and a risk scoring module that generates alerts when gait deterioration patterns exceed configurable thresholds for sustained periods.
  7. The system of claim 6, wherein the temporal convolutional network is quantized to INT8, occupies less than 500 KB of storage, and executes inference in less than 100 milliseconds on ARM Cortex-M class processors.
  8. The system of claim 6, further comprising a footwear change detection module that identifies changes in vertical acceleration impact peak magnitude and updates the personalized baseline accordingly.

Prior Art References

  1. US20200000363A1 — Apple Inc. — "Tremor and Dyskinesia Detection" (2020)
  2. US11564612B2 — Google LLC / Verily — "Gait Event Detection from Shoe Sensor" (2023)
  3. US20210401330A1 — Samsung — "Fall Risk from Walking Pattern" (2021)
  4. Postuma et al. — "MDS Clinical Criteria for Prodromal PD" — Lancet Neurology 2017
  5. Jack et al. — "Hypothetical Model of AD Biomarker Dynamics" — Lancet Neurology 2010
  6. Savica et al. — "Gait Changes Preceding PD" — Mayo Clinic Study of Aging 2019
  7. Beauchet et al. — "Gait Variability in Dementia" — Journal of Neural Transmission 2013
  8. Mc Ardle et al. — "Wrist-Worn Accelerometer Gait Analysis" — npj Digital Medicine 2020
  9. PhysioNet Gait in Parkinson's Disease Database
  10. PhysioNet Gait in Neurodegenerative Disease Database
  11. WHO Dementia Fact Sheet — 55 million affected globally
  12. Bai et al. — "An Empirical Evaluation of Generic Convolutional and Recurrent Networks for Sequence Modeling" — arXiv 2018 (TCN architecture)
  13. TensorFlow Lite for Microcontrollers — On-device ML runtime
  14. Statista — Global connected wearable devices (1.1 billion+)