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
Added _pipelines_per_batch
as a private argument to AutoMLSearch
#1355
Conversation
_pipelines_per_batch
as a private argument to AutoMLSearch
Codecov Report
@@ Coverage Diff @@
## main #1355 +/- ##
==========================================
+ Coverage 99.95% 99.95% +0.01%
==========================================
Files 213 213
Lines 13609 13632 +23
==========================================
+ Hits 13602 13625 +23
Misses 7 7
Continue to review full report at Codecov.
|
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.
@christopherbunn looks great!! Thanks :D
def total_pipelines(automl, num_batches, batch_size): | ||
total = 1 + len(automl.allowed_pipelines) | ||
total += ((num_batches - 1) * batch_size) | ||
return total |
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 is neat, nice to see this math condensed
Resolves #1339