pip install prosamplers
Frequently Asked Questions
Some terminology explanations
What is a sampler?
A sampler is a method / algorithm that generates a sequence of points in a given search space
What is progressive?
A progressive sampler allows generating points on a point-by-point basis and does not required to say in advance how many points there need to be. They allow to ask for more points indefinetely, some only have a minimal memory footprint whereas other require complex memory mechanism
Why we need Progressive Samplers?
Most use cases may be solve with a simple Grid or Random search, but when dimensionality is not huge (< 100 or so dimensions) and the computation time for each point is really expensive, this alternative sampling methods could outperform naive methods as Grid or Random Search. As dimensionality increases, results tend to converge to those of Random Search
1+1