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
Custom primitive creation functions #13
Conversation
…n name as name by default. add documentation
… updating custom primitive init methods
…om primitive examples in docs
@@ -1,4 +1,4 @@ | |||
import pickle | |||
import cloudpickle |
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.
do you need to add cloudpickle to requirements?
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.
added
Codecov Report
@@ Coverage Diff @@
## master #13 +/- ##
==========================================
+ Coverage 86.44% 86.86% +0.42%
==========================================
Files 73 73
Lines 6549 6778 +229
==========================================
+ Hits 5661 5888 +227
- Misses 888 890 +2
Continue to review full report at Codecov.
|
Added two functions,
make_trans_primitive
andmake_agg_primitive
. Given a function to apply to input features, list of allowed input feature types, and variable type of the resulting feature, these functions will create a new primitive that can be used with DFS.