Skip to content

Commit

Permalink
Merge pull request optuna#1530 from y0z/motpe
Browse files Browse the repository at this point in the history
Introduces Multiobjective TPE to optuna.multi_objective.samplers
  • Loading branch information
toshihikoyanase authored Oct 23, 2020
2 parents 2c23679 + c590827 commit ebe5bb9
Show file tree
Hide file tree
Showing 4 changed files with 1,299 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/source/reference/multi_objective/samplers.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ optuna.multi_objective.samplers
optuna.multi_objective.samplers.BaseMultiObjectiveSampler
optuna.multi_objective.samplers.NSGAIIMultiObjectiveSampler
optuna.multi_objective.samplers.RandomMultiObjectiveSampler
optuna.multi_objective.samplers.MOTPEMultiObjectiveSampler
1 change: 1 addition & 0 deletions optuna/multi_objective/samplers/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from optuna.multi_objective.samplers._adapter import _MultiObjectiveSamplerAdapter # NOQA
from optuna.multi_objective.samplers._base import BaseMultiObjectiveSampler # NOQA
from optuna.multi_objective.samplers._motpe import MOTPEMultiObjectiveSampler # NOQA
from optuna.multi_objective.samplers._nsga2 import NSGAIIMultiObjectiveSampler # NOQA
from optuna.multi_objective.samplers._random import RandomMultiObjectiveSampler # NOQA
Loading

0 comments on commit ebe5bb9

Please sign in to comment.