Expand description
Basic sampling strategies
This module provides fundamental sampling implementations including sequential and random sampling patterns.
Structs§
- Random
Sampler - Random sampler that yields indices in random order
- Sequential
Sampler - Sequential sampler that yields indices in order
Functions§
- random
- Create a random sampler
- random_
subset - Create a random subset sampler
- random_
with_ replacement - Create a random sampler with replacement
- sequential
- Create a sequential sampler