triplets 0.14.1-alpha

Composable data sampling primitives for deterministic multi-source ML/AI training-data orchestration.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Pluggable chunking algorithms.
//!
//! [`ChunkingAlgorithm`] defines the extension point used by the sampler to
//! materialize chunk candidates from record sections.

mod algorithm;
mod sliding_window;

pub use algorithm::ChunkingAlgorithm;
pub use sliding_window::SlidingWindowChunker;