Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/evotorch/algorithms/functional/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,6 +308,7 @@ def _evaluate_batch(self, batch: SolutionBatch):
from .funcadam import adam, adam_ask, adam_tell
from .funccem import cem, cem_ask, cem_tell
from .funcclipup import clipup, clipup_ask, clipup_tell
from .funcdcem import dcem, dcem_ask, dcem_tell
from .funcpgpe import pgpe, pgpe_ask, pgpe_tell
from .funcsgd import sgd, sgd_ask, sgd_tell

Expand All @@ -318,6 +319,9 @@ def _evaluate_batch(self, batch: SolutionBatch):
"cem",
"cem_ask",
"cem_tell",
"dcem",
"dcem_ask",
"dcem_tell",
"clipup",
"clipup_ask",
"clipup_tell",
Expand Down
Loading