Functions for generating candidate points from which the batch proposer selects. Different generators trade off coverage, speed, and adaptivity.
Details
All generator functions return a generator function with signature:
The generator function returns a data.table of n candidate configurations.
Available Generators
candidate_generator_lhs(): Latin Hypercube Sampling (space-filling)candidate_generator_random(): Pure random samplingcandidate_generator_sobol(): Sobol quasi-random sequencecandidate_generator_grid(): Regular grid (for small spaces)candidate_generator_local(): Local sampling around best pointscandidate_generator_mixed(): Combination of global and local sampling