sensorlm-rs 0.1.0

SensorLM – wearable sensor foundation model in Rust (Burn + WGPU)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Data pipeline: loading, preprocessing, download, and caption generation.
//!
//! # Submodules
//!
//! | Module | Purpose |
//! |--------|---------|
//! | [`captioning`] | Three-level hierarchical caption pipeline |
//! | [`dataset`] | [`burn`] `Dataset` implementations (real + synthetic) |
//! | [`download`] | HTTP download helpers and public dataset registry |
//! | [`preprocessing`] | Normalise / denormalise sensor tensors, handle masks |

pub mod captioning;
pub mod dataset;
pub mod download;
pub mod preprocessing;