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

Improve mfbo optimizer (Sourcery refactored) #6

Closed

Conversation

sourcery-ai[bot]
Copy link

@sourcery-ai sourcery-ai bot commented May 31, 2022

Pull Request #5 refactored by Sourcery.

If you're happy with these changes, merge this Pull Request using the Squash and merge strategy.

NOTE: As code is pushed to the original Pull Request, Sourcery will
re-run and update (force-push) this Pull Request with new refactorings as
necessary. If Sourcery finds no refactorings at any point, this Pull Request
will be closed automatically.

See our documentation here.

Run Sourcery locally

Reduce the feedback loop during development by using the Sourcery editor plugin:

Review changes via command line

To manually merge these changes, make sure you're on the improve-mfbo-optimizer branch, then run:

git fetch origin sourcery/improve-mfbo-optimizer
git merge --ff-only FETCH_HEAD
git reset HEAD^

Help us improve this pull request!

@sourcery-ai sourcery-ai bot requested a review from sjvrijn May 31, 2022 14:27
@sourcery-ai sourcery-ai bot force-pushed the sourcery/improve-mfbo-optimizer branch from cae63f8 to a84ddb1 Compare May 31, 2022 14:32
Comment on lines -103 to +104
err = "The utility function " \
"{} has not been implemented, " \
"please choose one of ucb, ei, or poi.".format(kind)
err = f"The utility function {kind} has not been implemented, please choose one of ucb, ei, or poi."

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function UtilityFunction.__init__ refactored with the following changes:

if not (show or save_as):
if not show and not save_as:
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function plot_multiple_error_grids refactored with the following changes:

axes[1].set_title(title + ' log-scale')
axes[1].set_title(f'{title} log-scale')
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function plot_extracts refactored with the following changes:

ax[1].set_title(title + ' log-scale')
ax[1].set_title(f'{title} log-scale')
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function plot_multi_file_extracts refactored with the following changes:

@sourcery-ai
Copy link
Author

sourcery-ai bot commented May 31, 2022

Sourcery Code Quality Report

✅  Merging this PR will increase code quality in the affected files by 0.09%.

Quality metrics Before After Change
Complexity 9.92 🙂 9.79 🙂 -0.13 👍
Method Length 111.02 🙂 111.02 🙂 0.00
Working memory 12.83 😞 12.83 😞 0.00
Quality 51.63% 🙂 51.72% 🙂 0.09% 👍
Other metrics Before After Change
Lines 1057 1056 -1
Changed files Quality Before Quality After Quality Change
scripts/experiments/2020-11-05-simple-mfbo.py 60.87% 🙂 60.86% 🙂 -0.01% 👎
scripts/processing/processing.py 44.45% 😞 44.61% 😞 0.16% 👍

Here are some functions in these files that still need a tune-up:

File Function Complexity Length Working Memory Quality Recommendation
scripts/processing/processing.py plot_error_grid 33 ⛔ 593 ⛔ 24 ⛔ 10.52% ⛔ Refactor to reduce nesting. Try splitting into smaller methods. Extract out complex expressions
scripts/experiments/2020-11-05-simple-mfbo.py Optimizer.iterate 18 🙂 290 ⛔ 16 ⛔ 28.13% 😞 Try splitting into smaller methods. Extract out complex expressions
scripts/processing/processing.py plot_multiple_error_grids 18 🙂 232 ⛔ 16 ⛔ 30.84% 😞 Try splitting into smaller methods. Extract out complex expressions
scripts/processing/processing.py plot_extracts 13 🙂 217 ⛔ 15 😞 36.95% 😞 Try splitting into smaller methods. Extract out complex expressions
scripts/processing/processing.py plot_multi_file_extracts 10 🙂 238 ⛔ 15 😞 38.33% 😞 Try splitting into smaller methods. Extract out complex expressions

Legend and Explanation

The emojis denote the absolute quality of the code:

  • ⭐ excellent
  • 🙂 good
  • 😞 poor
  • ⛔ very poor

The 👍 and 👎 indicate whether the quality has improved or gotten worse with this pull request.


Please see our documentation here for details on how these metrics are calculated.

We are actively working on this report - lots more documentation and extra metrics to come!

Help us improve this quality report!

@sjvrijn sjvrijn closed this Jun 9, 2022
@sjvrijn sjvrijn deleted the sourcery/improve-mfbo-optimizer branch June 9, 2022 09:12
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant