-
Notifications
You must be signed in to change notification settings - Fork 86
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
Reduce use_covariates threshold #3868
Conversation
Codecov Report
@@ Coverage Diff @@
## main #3868 +/- ##
=======================================
+ Coverage 99.7% 99.7% +0.1%
=======================================
Files 344 344
Lines 36185 36191 +6
=======================================
+ Hits 36048 36054 +6
Misses 137 137
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
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 just a suggestion
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, just a question
@@ -61,6 +61,9 @@ class ARIMARegressor(Estimator): | |||
supported_problem_types = [ProblemTypes.TIME_SERIES_REGRESSION] | |||
"""[ProblemTypes.TIME_SERIES_REGRESSION]""" | |||
|
|||
max_rows = 1000 | |||
max_cols = 7 |
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 a blocker but is there a reason why this is 7 and not like 5 or 10? Just very curious haha
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.
Nope, no strong motivation behind it. It was just a bit of a bump down, and without a more comprehensive set of datasets there was no way to test where the best line in the sand would be. Since these results seemed ok, I just stuck with it.
Moves to defaulting to
use_covariates=False
in more cases, since it produces significant slowdown without much benefit for larger datasets