-
Notifications
You must be signed in to change notification settings - Fork 726
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
Hyperparameter GridSearch with CausalForestDML #397
Comments
You cant use gcv itself but in the 0.9 release the CausalForestDML class will have a “tune” method that internally tunes parameters and you can define whatever grid of params you want similar to gcv. |
Thanks for the reply! Sounds like there is a lot of great new features in 0.9. Bring it on :) |
If you want to use it you can install the vasilis/grf_and_scorer_docs pip install git+https://github.com/microsoft/EconML.git@vasilis/grf_and_scorer_docs |
Hi @vsyrgkanis I was checking out the methods for CausalForrestDML (https://econml.azurewebsites.net/_autosummary/econml.dml.CausalForestDML.html) now that .9 is released. Is the tune method included in this release? Thanks for the help |
Unfortunately, it didn't get in the base 0.9 release. It'll get in, in an upcoming point release maybe next week. See here for the PR: |
This is now addressed by #390 and will be included in the 0.9.2 release |
0.9.2 has been released on pypi and hyperparam tuning is available |
Is there a way to use scikit learn's
GridSearchCV
withCausalForestDML
? In the EconML user guide under How do I select the hyperparameters of the final model (if any)? is an example for this withNonParamDML
butCausalForestDML
does not have amodel_final
parameter. I'd like to fine tunen_estimators
,max_depth
, etc parameters ofCausalForestDML
.When I try
I get the following error:
The text was updated successfully, but these errors were encountered: