-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update pypop7/benchmarks/__init__.py
- Loading branch information
1 parent
4963a38
commit 0e8ec81
Showing
1 changed file
with
7 additions
and
6 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,15 +1,16 @@ | ||
"""This Python module covers a set of benchmark functions. | ||
Here we do NOT include the test code for simplicity. | ||
Here we do NOT include the *testing* code for simplicity. | ||
For online documentations, please refer to: | ||
https://pypop.readthedocs.io/en/latest/benchmarks.html | ||
For online documentations of benchmark functions, please refer to: | ||
https://pypop.readthedocs.io/en/latest/benchmarks.html | ||
""" | ||
import pypop7.benchmarks.cases # test cases for all benchmarking functions (based on sampling) | ||
import pypop7.benchmarks.utils # utilities for saving, reading, plotting, and analyzing optimization results | ||
import pypop7.benchmarks.cases # *test* cases for all benchmarking functions (based on sampling) | ||
# utilities for saving, reading, plotting, and analyzing optimization results | ||
import pypop7.benchmarks.utils | ||
import pypop7.benchmarks.base_functions # base forms of benchmarking functions | ||
import pypop7.benchmarks.shifted_functions # shift/transform forms of benchmarking functions | ||
import pypop7.benchmarks.rotated_functions # rotation forms of benchmarking functions | ||
import pypop7.benchmarks.continuous_functions # rotation-shift forms of benchmarking functions | ||
import pypop7.benchmarks.data_science # loss functions from data science | ||
# NeverGrad: https://github.com/facebookresearch/nevergrad | ||
import pypop7.benchmarks.never_grad # photonics model from the NeverGrad platform | ||
import pypop7.benchmarks.never_grad # photonics model from *NeverGrad* |