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 time series support to make_pipeline #1566
Conversation
7e06f6b
to
2412677
Compare
Codecov Report
@@ Coverage Diff @@
## main #1566 +/- ##
=========================================
+ Coverage 100.0% 100.0% +0.1%
=========================================
Files 240 240
Lines 18177 18207 +30
=========================================
+ Hits 18169 18199 +30
Misses 8 8
Continue to review full report at Codecov.
|
2c24f04
to
9be2d81
Compare
categorical_cols = X.select('category') | ||
if (add_datetime_featurizer or len(categorical_cols.columns) > 0) and estimator_class not in {CatBoostClassifier, CatBoostRegressor}: | ||
if len(categorical_cols.columns) > 0 and estimator_class not in {CatBoostClassifier, CatBoostRegressor}: |
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.
DateTimeFeaturizer
no longer creates categorical features by default.
fdd1a24
to
6d43bf3
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.
LGTM! Nice tests!
pipeline_class = MulticlassClassificationPipeline | ||
elif problem_type == ProblemTypes.REGRESSION: | ||
pipeline_class = RegressionPipeline | ||
pipeline_class = _get_pipeline_base_class(problem_type) |
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!
7788eb9
to
4561ca0
Compare
This reverts commit d7e6820.
4561ca0
to
77691c7
Compare
Pull Request Description
Fixes #1497
After creating the pull request: in order to pass the release_notes_updated check you will need to update the "Future Release" section of
docs/source/release_notes.rst
to include this pull request by adding :pr:123
.