Close Menu
    DevStackTipsDevStackTips
    • Home
    • News & Updates
      1. Tech & Work
      2. View All

      Designing Better UX For Left-Handed People

      July 25, 2025

      This week in AI dev tools: Gemini 2.5 Flash-Lite, GitLab Duo Agent Platform beta, and more (July 25, 2025)

      July 25, 2025

      Tenable updates Vulnerability Priority Rating scoring method to flag fewer vulnerabilities as critical

      July 24, 2025

      Google adds updated workspace templates in Firebase Studio that leverage new Agent mode

      July 24, 2025

      I ran with the Apple Watch and Samsung Watch 8 – here’s the better AI coach

      July 26, 2025

      8 smart home gadgets that instantly upgraded my house (and why they work)

      July 26, 2025

      I tested Panasonic’s new affordable LED TV model – here’s my brutally honest buying advice

      July 26, 2025

      OpenAI teases imminent GPT-5 launch. Here’s what to expect

      July 26, 2025
    • Development
      1. Algorithms & Data Structures
      2. Artificial Intelligence
      3. Back-End Development
      4. Databases
      5. Front-End Development
      6. Libraries & Frameworks
      7. Machine Learning
      8. Security
      9. Software Engineering
      10. Tools & IDEs
      11. Web Design
      12. Web Development
      13. Web Security
      14. Programming Languages
        • PHP
        • JavaScript
      Featured

      NativePHP Is Entering Its Next Phase

      July 26, 2025
      Recent

      NativePHP Is Entering Its Next Phase

      July 26, 2025

      Medical Card Generator Android App Project Using SQLite

      July 26, 2025

      The details of TC39’s last meeting

      July 26, 2025
    • Operating Systems
      1. Windows
      2. Linux
      3. macOS
      Featured

      Elden Ring Nightreign’s Patch 1.02 update next week is adding a feature we’ve all been waiting for since launch — and another I’ve been begging for, too

      July 26, 2025
      Recent

      Elden Ring Nightreign’s Patch 1.02 update next week is adding a feature we’ve all been waiting for since launch — and another I’ve been begging for, too

      July 26, 2025

      The next time you look at Microsoft Copilot, it may look back — but who asked for this?

      July 26, 2025

      5 Open Source Apps You Can use for Seamless File Transfer Between Linux and Android

      July 26, 2025
    • Learning Resources
      • Books
      • Cheatsheets
      • Tutorials & Guides
    Home»Development»Machine Learning»Google Researchers Introduced LSM-2 with Adaptive and Inherited Masking (AIM): Enabling Direct Learning from Incomplete Wearable Data

    Google Researchers Introduced LSM-2 with Adaptive and Inherited Masking (AIM): Enabling Direct Learning from Incomplete Wearable Data

    July 24, 2025

    Introduction

    Wearable devices are transforming health monitoring by enabling continuous collection of physiological and behavioral signals such as heart rate, activity, temperature, and skin conductance. However, the real-world data that these devices generate is highly prone to missingness due to sensor failures, device removal, charging, motion artifacts, battery-saving modes, and other interruptions. This presents a significant challenge for self-supervised learning (SSL) and foundation models, which typically expect complete, regular data streams. Past solutions often relied on data imputation or discarding incomplete instances, which risks introducing bias or wasting valuable information.

    A team of researchers from Google DeepMind introduced LSM-2 (Large Sensor Model 2) framework—accompanied by the new Adaptive and Inherited Masking (AIM) strategy—addresses these issues directly, learning robust representations from incomplete wearable sensor data without explicit imputation. Below, we examine the technical innovations, empirical results, and key insights from this advancement.

    The Challenge: Wearable Data Missingness

    • Data Fragmentation: In a large-scale dataset of 1.6 million day-long (1440-minute) wearable data samples, 0% of the samples were fully complete; missingness is ubiquitous and often structured into long gaps, not simple random dropouts.
    • Missingness Modes: Common causes include:
      • Device off (charging or not worn)
      • Selective sensor deactivation (power-saving or operation-specific)
      • Motion artifacts or environmental noise
      • Out-of-range or physiologically impossible readings filtered out during preprocessing
    • Impact on Modeling: Many clinically-relevant physiological patterns (e.g., circadian rhythms, heart rate variability) require analysis of long sequences—where missingness is nearly guaranteed.

    Adaptive and Inherited Masking (AIM): Technical Approach

    Key Concepts

    AIM integrates two masking types for robust learning:

    • Inherited Mask: Marks tokens corresponding to real missingness in the sensor data
    • Artificial Mask: Randomly masks observed tokens to provide reconstruction targets for self-supervised pretraining

    These masks are unioned and handled by a transformer-based encoder-decoder structure, enabling the model to:

    • Learn directly from non-imputed, incomplete data
    • Adjust dynamically to real-world missingness during inference
    • Produce representations robust to both partial and systematic data gaps

    Masking Strategies for Pretraining

    • Random Imputation: Dropping 80% of tokens simulating sensor noise
    • Temporal Slices: Dropping 50% of temporal windows (all sensors missing during random periods)
    • Sensor Slices: Dropping 50% of sensor channels across the entire day (modeling selective sensor off periods)

    AIM combines the efficiency of dropout masking (removal from computation) and the flexibility of attention masking (support for dynamically-varying missingness), allowing the model to scale to long input sequences (day-long, >3,000 tokens).

    Dataset and Pretraining Details

    • Scale: 40 million hours of day-long, multimodal sensor data, collected from 60,440 participants between March and May 2024.
    • Sensors: Photoplethysmography (PPG), accelerometer, electrodermal activity (EDA), skin temperature, and altimeter. Each device contributed minutely aggregated features across a 24-hour window.
    • Demographic Diversity: Participants across a wide range of ages (18–96), genders, and BMI classes.
    • Downstream Labeled Data:
      • Metabolic Study (hypertension, anxiety prediction; n=1,250 labeled users)
      • Activity Recognition (20 activity classes, 104,086 events).

    Evaluation and Results

    Downstream Tasks

    AIM-based LSM-2 was assessed on:

    • Classification: Binary hypertension, anxiety, and 20-class activity recognition
    • Regression: Age and BMI
    • Generative: Recovery of missing sensor data (random imputation, temporal/signal gaps)

    Quantitative Results

    TaskMetricBest LSM-1LSM-2 w/ AIMImprovement
    HypertensionF10.6400.651+1.7%
    Activity RecognitionF10.4700.474+0.8%
    BMI (regression)Corr0.6670.673+1.0%
    Random Imputation (80%)MSE (↓)0.300.20+33% lower error
    2-signal RecoveryMSE (↓)0.730.17+77% lower error
    • Robustness to Targeted Missingness: When specific sensors or time windows were artificially removed, LSM-2 with AIM experienced 73% smaller performance drops (on average) compared to LSM-1. For example, F1 loss after removing accelerometry for activity recognition was -57% for LSM-2, as opposed to -71% for LSM-1, and LSM-2 retained +47% higher absolute F1 after ablation.
    • Clinical Coherence: The model’s performance drop matched domain expectations. Nighttime biosignal removal significantly reduced hypertension/anxiety prediction accuracy (reflecting real-world diagnostic value of nocturnal data).
    • Scaling: LSM-2 exhibited better scaling than LSM-1 in terms of subjects, data, compute, and model size, with no saturation observed in performance gains.

    Technical Insights

    • Direct Handling of Real-World Missingness: LSM-2 is the first wearable foundation model trained and evaluated directly on incomplete data, without explicit imputation.
    • Hybrid Masking Mechanism: Adaptive and inherited masking achieves both computational efficiency (via dropout removal) and flexibility (via attention masking).
    • Generalizable Embeddings: Even with a frozen backbone and simple linear probes, LSM-2 achieves state-of-the-art results in both clinical/person-level and event-level tasks, outperforming supervised and contrastive SSL baselines.
    • Generative and Discriminative Power: LSM-2 is the only evaluated model capable of both reconstructing missing signals and generating embeddings applicable across various downstream tasks, suggesting utility for real-world medical and behavioral monitoring applications.

    Conclusion

    LSM-2 with Adaptive and Inherited Masking presents a major step forward for deploying AI-driven health insights using real-world wearable sensor data. By directly embracing ubiquitous, structured missingness, and unifying generative and discriminative capabilities under one efficient and robust foundation model, this approach lays crucial groundwork for the future of wearable and health AI in realistic, imperfect data environments.


    Check out the Paper and Technical details. All credit for this research goes to the researchers of this project.

    Meet the AI Dev Newsletter read by 40k+ Devs and Researchers from NVIDIA, OpenAI, DeepMind, Meta, Microsoft, JP Morgan Chase, Amgen, Aflac, Wells Fargo and 100s more [SUBSCRIBE NOW]

    The post Google Researchers Introduced LSM-2 with Adaptive and Inherited Masking (AIM): Enabling Direct Learning from Incomplete Wearable Data appeared first on MarkTechPost.

    Source: Read More 

    Facebook Twitter Reddit Email Copy Link
    Previous ArticleBenchmarking Amazon Nova: A comprehensive analysis through MT-Bench and Arena-Hard-Auto
    Next Article 7 MCP Server Best Practices for Scalable AI Integrations in 2025

    Related Posts

    Machine Learning

    How to Evaluate Jailbreak Methods: A Case Study with the StrongREJECT Benchmark

    July 26, 2025
    Machine Learning

    RoboBrain 2.0: The Next-Generation Vision-Language Model Unifying Embodied AI for Advanced Robotics

    July 26, 2025
    Leave A Reply Cancel Reply

    For security, use of Google's reCAPTCHA service is required which is subject to the Google Privacy Policy and Terms of Use.

    Continue Reading

    Exploited: Vulnerability in software for managing Samsung digital displays (CVE-2024-7399)

    Security

    CVE-2025-45475 – Maccms SSRF Vulnerability in Friend Link Management

    Common Vulnerabilities and Exposures (CVEs)

    CVE-2025-5891 – Unitech pm2 Regular Expression Complexity Vulnerability

    Common Vulnerabilities and Exposures (CVEs)

    Distribution Release: Linux Kamarada 15.6

    News & Updates

    Highlights

    Development

    The Cryptography Handbook: Exploring RSA PKCSv1.5, OAEP, and PSS

    April 2, 2025

    The RSA algorithm was introduced in 1978 in the seminal paper, “A Method for Obtaining…

    Diablo 4, one of Blizzard’s best Xbox games, is now 64% off — a devilish Anti-Amazon Prime Day discount that’s worth taking over Amazon’s deals

    July 8, 2025

    Rilasciato KDE Plasma 6.5: Introduzione degli Angoli Inferiori Arrotondati e Altre Novità

    July 21, 2025

    CVE-2025-39460 – ThimPress Eduma Missing Authorization Vulnerability

    May 19, 2025
    © DevStackTips 2025. All rights reserved.
    • Contact
    • Privacy Policy

    Type above and press Enter to search. Press Esc to cancel.