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

Adding Multi-Objective Optimization to Optimizer Evaluator #216

Conversation

byte-sculptor
Copy link
Contributor

@byte-sculptor byte-sculptor commented Jan 29, 2021

OptimizerEvaluator now tracks pareto over time, pareto volume over time and multi-objective goodness of fit metrics.

I also added a read_from_disk() method to OptimizerEvaluationReport to mirror the write_to_disk() method and updated the tests to make use of it.

@byte-sculptor byte-sculptor marked this pull request as ready for review January 29, 2021 18:21
pickle.dump(self.regression_model_goodness_of_fit_state, out_file)
if self.regression_model_fit_state is not None:
with open(os.path.join(target_folder, "regression_model_goodness_of_fit_state.pickle"), "wb") as out_file:
pickle.dump(self.regression_model_fit_state, out_file)

if self.optima_over_time is not None:
with open(os.path.join(target_folder, "optima_over_time.pickle"), "wb") as out_file:
pickle.dump(self.optima_over_time, out_file)
Copy link

Choose a reason for hiding this comment

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

json ...

@byte-sculptor byte-sculptor merged commit e4ab63e into microsoft:main Jan 29, 2021
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.

2 participants