-
Notifications
You must be signed in to change notification settings - Fork 47
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
Feature misc jv #547
Feature misc jv #547
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #547 +/- ##
===========================================
- Coverage 90.91% 87.19% -3.72%
===========================================
Files 69 69
Lines 4403 4405 +2
===========================================
- Hits 4003 3841 -162
- Misses 400 564 +164
Continue to review full report at Codecov.
|
@@ -577,7 +579,9 @@ def minimize( | |||
ub = problem.ub | |||
if pyswarm is None: | |||
raise ImportError( | |||
"This optimizer requires an installation of pyswarm.") | |||
"This optimizer requires an installation of pyswarm.You can " |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"This optimizer requires an installation of pyswarm.You can " | |
"This optimizer requires an installation of pyswarm. You can " |
pypesto/optimize/optimizer.py
Outdated
@@ -641,7 +645,9 @@ def minimize( | |||
|
|||
if cma is None: | |||
raise ImportError( | |||
"This optimizer requires an installation of cma.") | |||
"This optimizer requires an installation of cma. You can " | |||
"install cma via pip install cma." |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"install cma via pip install cma." | |
"install cma via `pip install cma`." |
Co-authored-by: Yannik Schälte <31767307+yannikschaelte@users.noreply.github.com>
Co-authored-by: Yannik Schälte <31767307+yannikschaelte@users.noreply.github.com>
Co-authored-by: Yannik Schälte <31767307+yannikschaelte@users.noreply.github.com>
fides
is installed and throws a meaningful error message...