Info
neps.optimizers.info
#
SearcherConfigs
#
This class provides methods to access default configuration details for NePS optimizers.
get_available_algorithms
staticmethod
#
List all available algorithms used by NePS searchers.
RETURNS | DESCRIPTION |
---|---|
list[str]
|
list[str]: A list of algorithm names. |
Source code in neps/optimizers/info.py
get_searcher_from_algorithm
staticmethod
#
Get all NePS searchers that use a specific searching algorithm.
PARAMETER | DESCRIPTION |
---|---|
algorithm
|
The name of the algorithm needed for the search.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
list[str]
|
list[str]: A list of searcher names using the specified algorithm. |
Source code in neps/optimizers/info.py
get_searcher_kwargs
staticmethod
#
Get the kwargs and algorithm setup for a specific searcher.
PARAMETER | DESCRIPTION |
---|---|
searcher
|
The name of the searcher to check the details of.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
str
|
The raw content of the searcher's configuration
TYPE:
|
Source code in neps/optimizers/info.py
get_searchers
staticmethod
#
List all the searcher names that can be used in neps run.
RETURNS | DESCRIPTION |
---|---|
list[str]
|
list[str]: A list of searcher names. |