saealib.LHSInitializer¶
- class saealib.LHSInitializer(n_init_archive, n_init_population, seed=None)[source]¶
Bases:
InitializerLatin Hypercube Sampling Initializer.
- Parameters:
n_init_archive (int)
n_init_population (int)
seed (int | None)
- n_init_archive¶
The number of individuals to initialize in the archive.
- Type:
int
- n_init_population¶
The number of individuals to initialize in the population.
- Type:
int
- seed¶
The seed for the random number generator.
- Type:
int | None
Methods
Initialize Population and Archive with LHS samples. |
Method Details