-
Notifications
You must be signed in to change notification settings - Fork 721
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
Minor fixes #891
Minor fixes #891
Conversation
Signed-off-by: Keith Battocchi <kebatt@microsoft.com>
Signed-off-by: Keith Battocchi <kebatt@microsoft.com>
Signed-off-by: Keith Battocchi <kebatt@microsoft.com>
Signed-off-by: Keith Battocchi <kebatt@microsoft.com>
fd2c545
to
fb16c66
Compare
@@ -321,8 +321,8 @@ def test_non_standard_input(self,): | |||
model_propensity=DummyClassifier(strategy='uniform'), | |||
featurizer=PolynomialFeatures(degree=1, include_bias=False), | |||
cv=GroupKFold(n_splits=2), | |||
n_estimators=20, n_jobs=1, random_state=123).fit(y, T, X=X, | |||
groups=groups) | |||
n_estimators=100, n_jobs=1, random_state=123).fit(y, T, X=X, |
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.
Is this for test stability?
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.
Because n_estimators
was never passed correctly to DRPolicyForest in the past, this has always effectively run with n_estimators=100
(the default value), and the tests don't pass if we actually pass 20 through instead.
fb16c66
to
acb202a
Compare
Signed-off-by: Keith Battocchi <kebatt@microsoft.com>
Signed-off-by: Keith Battocchi <kebatt@microsoft.com>
acb202a
to
3dff057
Compare
this looks great, thank you - when can a new version be released to pypi so we can depend on it? |
just a gentle ping on the ETA for this fix, as we need it to resolve a security vulnerability in scikit-learn |
We hope to put out a bugfix release containing these fixes by the end of this week. |
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.
Looks good!
No description provided.