smac.random_design.abstract_random_design¶
Classes¶
|
Abstract base of helper classes to configure interleaving of random configurations in a list of challengers. |
Interfaces¶
- class smac.random_design.abstract_random_design.AbstractRandomDesign(seed=0)[source]¶
Bases:
object
Abstract base of helper classes to configure interleaving of random configurations in a list of challengers.
- Parameters:
seed (int) –
- abstract check(iteration)[source]¶
Check if the next configuration should be random.
- Parameters:
iteration (int) – Number of the i-th configuration evaluated in a SMBO iteration.
- Returns:
Whether the next configuration should be random.
- Return type:
bool
- property meta: dict[str, Any]¶
Returns the meta data of the created object.
- Return type:
dict
[str
,Any
]