Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Convergence tracking #193

Merged
merged 15 commits into from
Oct 19, 2022
Merged
2 changes: 1 addition & 1 deletion docs/source/indepth_tutorial/directed-search.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -685,7 +685,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.9.7"
"version": "3.9.12"
},
"latex_envs": {
"LaTeX_envs_menu_present": true,
Expand Down
30 changes: 25 additions & 5 deletions ema_workbench/em_framework/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,20 @@
"MultiprocessingEvaluator",
"SequentialEvaluator",
"ReplicatorModel",
"EpsilonProgress",
"HyperVolume",
"Convergence",
"ArchiveLogger",
"ArrayOutcome",
"Samplers",
"OutputSpaceExploration",
"EpsilonProgress",
"ArchiveLogger",
"HypervolumeMetric",
"GenerationalDistanceMetric",
"SpacingMetric",
"InvertedGenerationalDistanceMetric",
"EpsilonIndicatorMetric",
"epsilon_nondominated",
"rebuild_platypus_population",
"to_problem",
"to_robust_problem",
]

from .outcomes import ScalarOutcome, TimeSeriesOutcome, Constraint, ArrayOutcome
Expand Down Expand Up @@ -73,7 +80,20 @@
SequentialEvaluator,
Samplers,
)
from .optimization import Convergence, HyperVolume, EpsilonProgress, ArchiveLogger
from .optimization import (
Convergence,
EpsilonProgress,
ArchiveLogger,
HypervolumeMetric,
EpsilonIndicatorMetric,
GenerationalDistanceMetric,
InvertedGenerationalDistanceMetric,
SpacingMetric,
epsilon_nondominated,
rebuild_platypus_population,
to_problem,
to_robust_problem,
)
from .outputspace_exploration import OutputSpaceExploration

try:
Expand Down
Loading