Skip to main content

sensorlm/data/
mod.rs

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