-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b9afff9
commit 884c1ef
Showing
2 changed files
with
12 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
from humpday.optimizers.pysotcube import pysot_srbf_cube, pysot_dycors_cube | ||
from humpday.optimizers.axcube import ax_default_cube | ||
from humpday.optimizers.dlibcube import DLIB_OPTIMIZERS | ||
from humpday.optimizers.nevergradcube import nevergrad_ngopt8_cube, nevergrad_ngopt4_cube | ||
from humpday.optimizers.optunacube import optuna_cmaes_cube | ||
from humpday.optimizers.pymoocube import pymoo_pattern_cube | ||
from humpday.optimizers.shgocube import shgo_powell_sobol_cube | ||
from humpday.optimizers.skoptcube import skopt_gp_default_cube | ||
from humpday.optimizers.nloptcube import nlopt_directr_cube | ||
from humpday.optimizers.dlibcube import DLIB_OPTIMIZERS | ||
|
||
TOP_OPTIMIZERS = [pysot_dycors_cube, pysot_srbf_cube, ax_default_cube, | ||
TOP_OPTIMIZERS = [pysot_dycors_cube, pysot_srbf_cube, | ||
nevergrad_ngopt4_cube, nevergrad_ngopt8_cube, optuna_cmaes_cube, pymoo_pattern_cube, | ||
shgo_powell_sobol_cube, skopt_gp_default_cube, nlopt_directr_cube] + DLIB_OPTIMIZERS | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters