Skip to content

Commit

Permalink
Merge pull request optuna#4436 from Alnusjaponica/implement-nsgaiii
Browse files Browse the repository at this point in the history
Implement NSGA-III
  • Loading branch information
toshihikoyanase committed May 11, 2023
2 parents 557f079 + 7cae1e3 commit 3d3aeec
Show file tree
Hide file tree
Showing 5 changed files with 1,237 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/source/reference/samplers/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,7 @@ The :mod:`~optuna.samplers` module defines a base class for parameter sampling a
optuna.samplers.CmaEsSampler
optuna.samplers.PartialFixedSampler
optuna.samplers.NSGAIISampler
optuna.samplers.NSGAIIISampler
optuna.samplers.MOTPESampler
optuna.samplers.QMCSampler
optuna.samplers.BruteForceSampler
Expand Down
2 changes: 2 additions & 0 deletions optuna/samplers/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
from optuna.samplers._brute_force import BruteForceSampler
from optuna.samplers._cmaes import CmaEsSampler
from optuna.samplers._grid import GridSampler
from optuna.samplers._nsgaiii import NSGAIIISampler
from optuna.samplers._partial_fixed import PartialFixedSampler
from optuna.samplers._qmc import QMCSampler
from optuna.samplers._random import RandomSampler
Expand All @@ -21,6 +22,7 @@
"IntersectionSearchSpace",
"MOTPESampler",
"NSGAIISampler",
"NSGAIIISampler",
"PartialFixedSampler",
"QMCSampler",
"RandomSampler",
Expand Down
Loading

0 comments on commit 3d3aeec

Please sign in to comment.