-
Notifications
You must be signed in to change notification settings - Fork 85
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
Add new ensembler component #2653
Conversation
Codecov Report
@@ Coverage Diff @@
## main #2653 +/- ##
=======================================
+ Coverage 99.8% 99.8% +0.1%
=======================================
Files 297 302 +5
Lines 27741 28128 +387
=======================================
+ Hits 27664 28050 +386
- Misses 77 78 +1
Continue to review full report at Codecov.
|
9bc885c
to
23fe8f9
Compare
n_components = 54 | ||
elif is_using_windows and not is_running_py_39_or_above: | ||
# No prophet | ||
n_components = 53 | ||
n_components = 55 | ||
elif is_using_windows and is_running_py_39_or_above: | ||
# No detrender, no arima, no prophet | ||
n_components = 51 | ||
n_components = 53 |
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.
Since these are Windows/Conda tests, we might just not get coverage for this section until we merge to main.
evalml/pipelines/components/ensemble/stacked_ensemble_regressor.py
Outdated
Show resolved
Hide resolved
evalml/pipelines/components/ensemble/stacked_ensemble_classifier.py
Outdated
Show resolved
Hide resolved
evalml/pipelines/components/ensemble/stacked_ensemble_classifier.py
Outdated
Show resolved
Hide resolved
98daa6e
to
fad73b5
Compare
eb07d97
to
24a981d
Compare
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.
Nice, this continues to be awesome work! Just left a couple small suggestions and nits.
# The total number of minimal components is 42 | ||
# The total number of components is 53 | ||
# The total number of minimal components is 43 | ||
# The total number of components is 56 |
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.
Not sure 56 is the correct value?
a7a13b7
to
5068338
Compare
24ee8cf
to
5359ef0
Compare
Addressed comments in this review.
Resolves #1930